├── Configuration.go ├── LICENSE ├── README.md ├── apiclient_pkg ├── APIClient.go └── Client.go ├── apihelper_pkg ├── APIError.go └── APIHelper.go └── models_pkg └── Models.go /Configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/Configuration.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/README.md -------------------------------------------------------------------------------- /apiclient_pkg/APIClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/apiclient_pkg/APIClient.go -------------------------------------------------------------------------------- /apiclient_pkg/Client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/apiclient_pkg/Client.go -------------------------------------------------------------------------------- /apihelper_pkg/APIError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/apihelper_pkg/APIError.go -------------------------------------------------------------------------------- /apihelper_pkg/APIHelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/apihelper_pkg/APIHelper.go -------------------------------------------------------------------------------- /models_pkg/Models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o3ma/o3rest/HEAD/models_pkg/Models.go --------------------------------------------------------------------------------