├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── api ├── api.go └── types.go ├── config └── config.go ├── controller ├── controller.go ├── test.go ├── ticket.go ├── token.go └── user.go ├── docs ├── docs.go ├── swagger.json └── swagger.yaml ├── go.mod ├── go.sum ├── main.go └── service ├── service.go ├── service_test.go └── types.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/README.md -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/api/api.go -------------------------------------------------------------------------------- /api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/api/types.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/config/config.go -------------------------------------------------------------------------------- /controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/controller/controller.go -------------------------------------------------------------------------------- /controller/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/controller/test.go -------------------------------------------------------------------------------- /controller/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/controller/ticket.go -------------------------------------------------------------------------------- /controller/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/controller/token.go -------------------------------------------------------------------------------- /controller/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/controller/user.go -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/main.go -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/service/service.go -------------------------------------------------------------------------------- /service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/service/service_test.go -------------------------------------------------------------------------------- /service/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/line/blockchain-sample-link-cinema/HEAD/service/types.go --------------------------------------------------------------------------------