├── .gitignore ├── .travis.yml ├── README.md ├── app.ini ├── config.go ├── db.sql ├── go-id-builder.go ├── model.go ├── tools.go └── watch.go /.gitignore: -------------------------------------------------------------------------------- 1 | go-id-builder -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/README.md -------------------------------------------------------------------------------- /app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/app.ini -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/config.go -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/db.sql -------------------------------------------------------------------------------- /go-id-builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/go-id-builder.go -------------------------------------------------------------------------------- /model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/model.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/tools.go -------------------------------------------------------------------------------- /watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcn/go-id-builder/HEAD/watch.go --------------------------------------------------------------------------------