├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── collection.go ├── go.mod ├── info.go ├── main.go └── types.go /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/README.md -------------------------------------------------------------------------------- /collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/collection.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/floyernick/fleep-go 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/info.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/main.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ua-nick/fleep-go/HEAD/types.go --------------------------------------------------------------------------------