UNPKG
ofpmsg-js
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
OpenFlow message javascript library
github.com/flowgrammable/ofpmsg-js
flowgrammable/ofpmsg-js
ofpmsg-js
/
lib
/
versions.js
16 lines
(12 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(
function
(
) {
'use strict'
;
// OpenFlow versions supported
exports
.
Version
= {
"1.0"
:
require
(
'./ofp1_0/ofp1_0.js'
),
"1.1"
:
require
(
'./ofp1_1'
),
"1.2"
:
require
(
'./ofp1_2'
),
"1.3"
:
require
(
'./ofp1_3/ofp1_3.js'
),
"1.4"
:
require
(
'./ofp1_4'
),
"1.5"
:
require
(
'./ofp1_5'
), }; })();