├── .env ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── authgraph.png ├── authtables.go ├── configuration.go ├── datastore.go ├── docker-compose.yml ├── example.gif ├── graph.png ├── scripts └── test └── visual.png /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/README.md -------------------------------------------------------------------------------- /authgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/authgraph.png -------------------------------------------------------------------------------- /authtables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/authtables.go -------------------------------------------------------------------------------- /configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/configuration.go -------------------------------------------------------------------------------- /datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/datastore.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/example.gif -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/graph.png -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/scripts/test -------------------------------------------------------------------------------- /visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magoo/AuthTables/HEAD/visual.png --------------------------------------------------------------------------------