├── .circleci └── config.yml ├── .dockerignore ├── .github ├── CODE_OF_CONDUCT.md ├── dependabot.yml └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── compose-admin.yaml ├── compose.yaml ├── db.go ├── db_test.go ├── docker ├── initdb.d │ ├── 01-schema.sql │ └── 02-data.sql └── nginx │ └── default.conf ├── go.mod ├── go.sum ├── handlers.go ├── handlers_test.go ├── main.go ├── mozlog ├── mozlog.go └── mozlog_test.go ├── params.go ├── scripts └── create_docker_testdb ├── vendor ├── filippo.io │ └── edwards25519 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── edwards25519.go │ │ ├── extra.go │ │ ├── field │ │ ├── fe.go │ │ ├── fe_amd64.go │ │ ├── fe_amd64.s │ │ ├── fe_amd64_noasm.go │ │ ├── fe_arm64.go │ │ ├── fe_arm64.s │ │ ├── fe_arm64_noasm.go │ │ ├── fe_extra.go │ │ └── fe_generic.go │ │ ├── scalar.go │ │ ├── scalar_fiat.go │ │ ├── scalarmult.go │ │ └── tables.go ├── github.com │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── v2 │ │ │ ├── LICENSE.md │ │ │ └── md2man │ │ │ ├── debug.go │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── compress.go │ │ │ ├── conncheck.go │ │ │ ├── conncheck_dummy.go │ │ │ ├── connection.go │ │ │ ├── connector.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── nulltime.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── russross │ │ └── blackfriday │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── doc.go │ │ │ ├── entities.go │ │ │ ├── esc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── markdown.go │ │ │ ├── node.go │ │ │ └── smartypants.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ └── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── http_assertions.go │ │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ └── urfave │ │ └── cli │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── docs.go │ │ ├── errors.go │ │ ├── fish.go │ │ ├── flag.go │ │ ├── flag_bool.go │ │ ├── flag_bool_t.go │ │ ├── flag_duration.go │ │ ├── flag_float64.go │ │ ├── flag_generic.go │ │ ├── flag_int.go │ │ ├── flag_int64.go │ │ ├── flag_int64_slice.go │ │ ├── flag_int_slice.go │ │ ├── flag_string.go │ │ ├── flag_string_slice.go │ │ ├── flag_uint.go │ │ ├── flag_uint64.go │ │ ├── funcs.go │ │ ├── help.go │ │ ├── parse.go │ │ ├── sort.go │ │ └── template.go ├── gopkg.in │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt └── version.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/README.md -------------------------------------------------------------------------------- /compose-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/compose-admin.yaml -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/compose.yaml -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/db.go -------------------------------------------------------------------------------- /db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/db_test.go -------------------------------------------------------------------------------- /docker/initdb.d/01-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/docker/initdb.d/01-schema.sql -------------------------------------------------------------------------------- /docker/initdb.d/02-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/docker/initdb.d/02-data.sql -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/go.sum -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/handlers.go -------------------------------------------------------------------------------- /handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/handlers_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/main.go -------------------------------------------------------------------------------- /mozlog/mozlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/mozlog/mozlog.go -------------------------------------------------------------------------------- /mozlog/mozlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/mozlog/mozlog_test.go -------------------------------------------------------------------------------- /params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/params.go -------------------------------------------------------------------------------- /scripts/create_docker_testdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/scripts/create_docker_testdb -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/README.md -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/doc.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/edwards25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/edwards25519.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/extra.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_amd64.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_amd64.s -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_arm64.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_arm64.s -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_extra.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/field/fe_generic.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/scalar.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalar_fiat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/scalar_fiat.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalarmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/scalarmult.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/filippo.io/edwards25519/tables.go -------------------------------------------------------------------------------- /vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/cpuguy83/go-md2man/v2/md2man/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/cpuguy83/go-md2man/v2/md2man/debug.go -------------------------------------------------------------------------------- /vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go -------------------------------------------------------------------------------- /vendor/github.com/cpuguy83/go-md2man/v2/md2man/roff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/cpuguy83/go-md2man/v2/md2man/roff.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/auth.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/collations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/collations.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/compress.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/conncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/conncheck.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/conncheck_dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/conncheck_dummy.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/connection.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/connector.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/const.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/driver.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/fields.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/infile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/infile.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/nulltime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/nulltime.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/packets.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/result.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/statement.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/transaction.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/go-sql-driver/mysql/utils.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/block.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/entities.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/esc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/esc.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/html.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/inline.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/markdown.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/node.go -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/v2/smartypants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/russross/blackfriday/v2/smartypants.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_compare.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertion_order.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/docs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/fish.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_bool.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_bool_t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_bool_t.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_duration.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_float64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_generic.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_int.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_int64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_string.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_uint.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/flag_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/parse.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/sort.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/github.com/urfave/cli/template.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/go-bouncer/HEAD/version.json --------------------------------------------------------------------------------