├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api.go ├── api_test.go ├── cli ├── cli.go └── cli_test.go ├── client └── client.go ├── config └── config.go ├── example └── main.go ├── go.mod ├── go.sum ├── lcs └── license.go ├── main.go ├── main_test.go ├── sample_config.json ├── sample_license.json ├── sample_private_key.pem ├── sample_public_key.pem ├── storage └── storage.go └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/README.md -------------------------------------------------------------------------------- /api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/api.go -------------------------------------------------------------------------------- /api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/api_test.go -------------------------------------------------------------------------------- /cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/cli/cli.go -------------------------------------------------------------------------------- /cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/cli/cli_test.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/client/client.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/config/config.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/go.sum -------------------------------------------------------------------------------- /lcs/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/lcs/license.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/main_test.go -------------------------------------------------------------------------------- /sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/sample_config.json -------------------------------------------------------------------------------- /sample_license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/sample_license.json -------------------------------------------------------------------------------- /sample_private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/sample_private_key.pem -------------------------------------------------------------------------------- /sample_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/sample_public_key.pem -------------------------------------------------------------------------------- /storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/storage/storage.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkansenharputlu/f-license/HEAD/test.sh --------------------------------------------------------------------------------