diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-07-07 13:48:38 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-07-07 20:44:25 +0900 |
commit | c4775c42510d1f1ddd55036dc19e982712fa6a0b (patch) | |
tree | 6ec8b61d4338c809e239e3003a2d32d480898e22 /zebra/safi_string.go | |
parent | b3079759aa13172fcb548a83da9a9653d8d5fed4 (diff) |
follow Standard Go Project Layout
https://github.com/golang-standards/project-layout
Now you can see clearly what are private and public library code.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'zebra/safi_string.go')
-rw-r--r-- | zebra/safi_string.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/zebra/safi_string.go b/zebra/safi_string.go deleted file mode 100644 index ab491cb6..00000000 --- a/zebra/safi_string.go +++ /dev/null @@ -1,17 +0,0 @@ -// Code generated by "stringer -type=SAFI"; DO NOT EDIT. - -package zebra - -import "fmt" - -const _SAFI_name = "SAFI_UNICASTSAFI_MULTICASTSAFI_RESERVED_3SAFI_MPLS_VPNSAFI_MAX" - -var _SAFI_index = [...]uint8{0, 12, 26, 41, 54, 62} - -func (i SAFI) String() string { - i -= 1 - if i >= SAFI(len(_SAFI_index)-1) { - return fmt.Sprintf("SAFI(%d)", i+1) - } - return _SAFI_name[_SAFI_index[i]:_SAFI_index[i+1]] -} |