├── .github └── workflows │ ├── go.yml │ ├── release.yml │ └── releasev2.yml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── internal ├── lsremote.go ├── lsremote_test.go └── use.go ├── main.go └── v2 ├── go.mod ├── go.sum ├── internal ├── lsremote.go ├── lsremote_test.go └── use.go └── main.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/releasev2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/.github/workflows/releasev2.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/go.sum -------------------------------------------------------------------------------- /internal/lsremote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/internal/lsremote.go -------------------------------------------------------------------------------- /internal/lsremote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/internal/lsremote_test.go -------------------------------------------------------------------------------- /internal/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/internal/use.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/main.go -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/go.mod -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/go.sum -------------------------------------------------------------------------------- /v2/internal/lsremote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/internal/lsremote.go -------------------------------------------------------------------------------- /v2/internal/lsremote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/internal/lsremote_test.go -------------------------------------------------------------------------------- /v2/internal/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/internal/use.go -------------------------------------------------------------------------------- /v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akito0107/goswitch/HEAD/v2/main.go --------------------------------------------------------------------------------