├── .github └── workflows │ ├── codecov.yml │ ├── publish_npm.yaml │ └── release.yml ├── .gitignore ├── .goreleaser.debug.yaml ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── api ├── gateway │ └── openapi.yaml └── index.html ├── cmd └── migration-tool │ ├── log.go │ ├── main.go │ └── migration_dummy.go ├── common ├── config.go └── version.go ├── go.mod ├── go.sum ├── main.go ├── package.json ├── pkg └── port.go ├── route ├── gateway_route.go ├── management_route.go ├── management_route_test.go └── static_route.go ├── service ├── management.go ├── management_test.go └── state.go └── tsconfig.json /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/publish_npm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.github/workflows/publish_npm.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.goreleaser.debug.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/README.md -------------------------------------------------------------------------------- /api/gateway/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/api/gateway/openapi.yaml -------------------------------------------------------------------------------- /api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/api/index.html -------------------------------------------------------------------------------- /cmd/migration-tool/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/cmd/migration-tool/log.go -------------------------------------------------------------------------------- /cmd/migration-tool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/cmd/migration-tool/main.go -------------------------------------------------------------------------------- /cmd/migration-tool/migration_dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/cmd/migration-tool/migration_dummy.go -------------------------------------------------------------------------------- /common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/common/config.go -------------------------------------------------------------------------------- /common/version.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | const Version = "0.4.8" 4 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/main.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/package.json -------------------------------------------------------------------------------- /pkg/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/pkg/port.go -------------------------------------------------------------------------------- /route/gateway_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/route/gateway_route.go -------------------------------------------------------------------------------- /route/management_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/route/management_route.go -------------------------------------------------------------------------------- /route/management_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/route/management_route_test.go -------------------------------------------------------------------------------- /route/static_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/route/static_route.go -------------------------------------------------------------------------------- /service/management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/service/management.go -------------------------------------------------------------------------------- /service/management_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/service/management_test.go -------------------------------------------------------------------------------- /service/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/service/state.go -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-Gateway/HEAD/tsconfig.json --------------------------------------------------------------------------------