├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── cmd └── postgrest-auth │ └── main.go ├── docker-compose.yaml ├── pkg ├── api │ ├── handler.go │ └── server.go ├── config │ └── config.go ├── mail │ ├── queue.go │ ├── sender.go │ └── templates.go ├── model │ ├── base.go │ ├── user.go │ └── user_test.go └── oauth │ ├── facebook │ └── facebook.go │ ├── google │ └── google.go │ └── provider.go └── vendor ├── github.com ├── Masterminds │ ├── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ └── version.go │ └── sprig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── list.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── semver.go │ │ └── strings.go ├── aokoli │ └── goutils │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go ├── dchest │ ├── authcookie │ │ ├── LICENSE │ │ ├── README.md │ │ └── authcookie.go │ └── passwordreset │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── passwordreset.go ├── dgrijalva │ └── jwt-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go ├── google │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ └── translate.go ├── imdario │ └── mergo │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ ├── mergo.go │ │ └── testdata │ │ └── license.yml ├── jaytaylor │ └── html2text │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── html2text.go ├── kelseyhightower │ └── envconfig │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── env_os.go │ │ ├── env_syscall.go │ │ ├── envconfig.go │ │ └── usage.go ├── labstack │ ├── echo │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bind.go │ │ ├── context.go │ │ ├── echo.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── group.go │ │ ├── log.go │ │ ├── middleware │ │ │ ├── basic_auth.go │ │ │ ├── body_dump.go │ │ │ ├── body_limit.go │ │ │ ├── compress.go │ │ │ ├── cors.go │ │ │ ├── csrf.go │ │ │ ├── jwt.go │ │ │ ├── key_auth.go │ │ │ ├── logger.go │ │ │ ├── method_override.go │ │ │ ├── middleware.go │ │ │ ├── proxy.go │ │ │ ├── proxy_1_11.go │ │ │ ├── proxy_1_11_n.go │ │ │ ├── recover.go │ │ │ ├── redirect.go │ │ │ ├── request_id.go │ │ │ ├── rewrite.go │ │ │ ├── secure.go │ │ │ ├── slash.go │ │ │ └── static.go │ │ ├── response.go │ │ └── router.go │ └── gommon │ │ ├── LICENSE │ │ ├── bytes │ │ ├── README.md │ │ └── bytes.go │ │ ├── color │ │ ├── README.md │ │ └── color.go │ │ ├── log │ │ ├── README.md │ │ ├── color.go │ │ ├── log.go │ │ └── white.go │ │ └── random │ │ └── random.go ├── lib │ └── pq │ │ ├── .gitignore │ │ ├── .travis.sh │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TESTS.md │ │ ├── array.go │ │ ├── buf.go │ │ ├── conn.go │ │ ├── conn_go18.go │ │ ├── connector.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── go.mod │ │ ├── notify.go │ │ ├── oid │ │ ├── doc.go │ │ ├── gen.go │ │ └── types.go │ │ ├── rows.go │ │ ├── ssl.go │ │ ├── ssl_go1.7.go │ │ ├── ssl_permissions.go │ │ ├── ssl_renegotiation.go │ │ ├── ssl_windows.go │ │ ├── url.go │ │ ├── user_posix.go │ │ ├── user_windows.go │ │ └── uuid.go ├── matcornic │ └── hermes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default.go │ │ ├── flat.go │ │ ├── gometalinter.json │ │ └── hermes.go ├── mattn │ ├── go-colorable │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── isatty_appengine.go │ │ ├── isatty_bsd.go │ │ ├── isatty_linux.go │ │ ├── isatty_linux_ppc64x.go │ │ ├── isatty_others.go │ │ ├── isatty_solaris.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.mkd │ │ ├── runewidth.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ └── runewidth_windows.go ├── olekukonko │ └── tablewriter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go ├── shurcooL │ └── sanitized_anchor_name │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── main.go ├── ssor │ └── bom │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── bom.go └── valyala │ ├── bytebufferpool │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bytebuffer.go │ ├── doc.go │ └── pool.go │ └── fasttemplate │ ├── LICENSE │ ├── README.md │ ├── template.go │ ├── unsafe.go │ └── unsafe_gae.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── acme │ │ ├── acme.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── cache.go │ │ │ ├── listener.go │ │ │ └── renewal.go │ │ ├── http.go │ │ ├── jws.go │ │ └── types.go │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ └── scrypt │ │ └── scrypt.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── html │ │ ├── atom │ │ ├── atom.go │ │ ├── gen.go │ │ └── table.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ └── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── unix │ ├── .gitignore │ ├── README.md │ ├── affinity_linux.go │ ├── aliases.go │ ├── asm_aix_ppc64.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_openbsd_arm.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── cap_freebsd.go │ ├── constants.go │ ├── dev_aix_ppc.go │ ├── dev_aix_ppc64.go │ ├── dev_darwin.go │ ├── dev_dragonfly.go │ ├── dev_freebsd.go │ ├── dev_linux.go │ ├── dev_netbsd.go │ ├── dev_openbsd.go │ ├── dirent.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── errors_freebsd_386.go │ ├── errors_freebsd_amd64.go │ ├── errors_freebsd_arm.go │ ├── fcntl.go │ ├── fcntl_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── ioctl.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.go │ ├── mksyscall_aix_ppc.pl │ ├── mksyscall_aix_ppc64.pl │ ├── mksyscall_solaris.pl │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── openbsd_pledge.go │ ├── openbsd_unveil.go │ ├── pagesize_unix.go │ ├── race.go │ ├── race0.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_aix.go │ ├── syscall_aix_ppc.go │ ├── syscall_aix_ppc64.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_amd64_gc.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_gc.go │ ├── syscall_linux_gc_386.go │ ├── syscall_linux_gccgo_386.go │ ├── syscall_linux_gccgo_arm.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_riscv64.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_sparc64.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── syscall_unix_gc.go │ ├── syscall_unix_gc_ppc64x.go │ ├── timestruct.go │ ├── types_aix.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── xattr_bsd.go │ ├── zerrors_aix_ppc.go │ ├── zerrors_aix_ppc64.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_riscv64.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_solaris_amd64.go │ ├── zptrace386_linux.go │ ├── zptracearm_linux.go │ ├── zptracemips_linux.go │ ├── zptracemipsle_linux.go │ ├── zsyscall_aix_ppc.go │ ├── zsyscall_aix_ppc64.go │ ├── zsyscall_aix_ppc64_gc.go │ ├── zsyscall_aix_ppc64_gccgo.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_riscv64.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd_386.go │ ├── zsysctl_openbsd_amd64.go │ ├── zsysctl_openbsd_arm.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_riscv64.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── ztypes_aix_ppc.go │ ├── ztypes_aix_ppc64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_riscv64.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ └── ztypes_solaris_amd64.go └── gopkg.in ├── alexcesaro └── quotedprintable.v3 │ ├── LICENSE │ ├── README.md │ ├── encodedword.go │ ├── pool.go │ ├── pool_go12.go │ ├── reader.go │ └── writer.go ├── gomail.v2 ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── auth.go ├── doc.go ├── message.go ├── mime.go ├── mime_go14.go ├── send.go ├── smtp.go └── writeto.go └── russross └── blackfriday.v2 ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── block.go ├── doc.go ├── esc.go ├── go.mod ├── html.go ├── inline.go ├── markdown.go ├── node.go └── smartypants.go /.dockerignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | deploy.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/README.md -------------------------------------------------------------------------------- /cmd/postgrest-auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/cmd/postgrest-auth/main.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /pkg/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/api/handler.go -------------------------------------------------------------------------------- /pkg/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/api/server.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/mail/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/mail/queue.go -------------------------------------------------------------------------------- /pkg/mail/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/mail/sender.go -------------------------------------------------------------------------------- /pkg/mail/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/mail/templates.go -------------------------------------------------------------------------------- /pkg/model/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/model/base.go -------------------------------------------------------------------------------- /pkg/model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/model/user.go -------------------------------------------------------------------------------- /pkg/model/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/model/user_test.go -------------------------------------------------------------------------------- /pkg/oauth/facebook/facebook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/oauth/facebook/facebook.go -------------------------------------------------------------------------------- /pkg/oauth/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/oauth/google/google.go -------------------------------------------------------------------------------- /pkg/oauth/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/pkg/oauth/provider.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/collection.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/constraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/constraints.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/semver/version.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/crypto.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/date.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/dict.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/functions.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/list.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/numeric.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/regex.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/semver.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/Masterminds/sprig/strings.go -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/aokoli/goutils/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/aokoli/goutils/README.md -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/randomstringutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/aokoli/goutils/randomstringutils.go -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/stringutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/aokoli/goutils/stringutils.go -------------------------------------------------------------------------------- /vendor/github.com/aokoli/goutils/wordutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/aokoli/goutils/wordutils.go -------------------------------------------------------------------------------- /vendor/github.com/dchest/authcookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/authcookie/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dchest/authcookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/authcookie/README.md -------------------------------------------------------------------------------- /vendor/github.com/dchest/authcookie/authcookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/authcookie/authcookie.go -------------------------------------------------------------------------------- /vendor/github.com/dchest/passwordreset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/passwordreset/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/dchest/passwordreset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/passwordreset/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dchest/passwordreset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/passwordreset/README.md -------------------------------------------------------------------------------- /vendor/github.com/dchest/passwordreset/passwordreset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dchest/passwordreset/passwordreset.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/claims.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/ecdsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/errors.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/map_claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/map_claims.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/parser.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa_pss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa_pss.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa_utils.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/signing_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/signing_method.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/dgrijalva/jwt-go/token.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/README.md -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/common.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/convert.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/count.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/doc.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/format.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/manipulate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/manipulate.go -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/huandu/xstrings/translate.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/testdata/license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/imdario/mergo/testdata/license.yml -------------------------------------------------------------------------------- /vendor/github.com/jaytaylor/html2text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/jaytaylor/html2text/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jaytaylor/html2text/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/jaytaylor/html2text/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jaytaylor/html2text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/jaytaylor/html2text/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jaytaylor/html2text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/jaytaylor/html2text/README.md -------------------------------------------------------------------------------- /vendor/github.com/jaytaylor/html2text/html2text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/jaytaylor/html2text/html2text.go -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/README.md -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/env_os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/env_os.go -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/env_syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/env_syscall.go -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/envconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/envconfig.go -------------------------------------------------------------------------------- /vendor/github.com/kelseyhightower/envconfig/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/kelseyhightower/envconfig/usage.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/.gitattributes -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage.txt 3 | _test 4 | vendor 5 | .idea 6 | *.iml 7 | *.out 8 | -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/Makefile -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/README.md -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/bind.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/context.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/echo.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/go.mod -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/go.sum -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/group.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/log.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/basic_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/basic_auth.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/body_dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/body_dump.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/body_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/body_limit.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/compress.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/cors.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/csrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/csrf.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/jwt.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/key_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/key_auth.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/logger.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/method_override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/method_override.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/middleware.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/proxy_1_11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/proxy_1_11.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/proxy_1_11_n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/proxy_1_11_n.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/recover.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/redirect.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/request_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/request_id.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/rewrite.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/secure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/secure.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/slash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/slash.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/middleware/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/middleware/static.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/response.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/echo/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/echo/router.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/bytes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/bytes/README.md -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/bytes/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/log/README.md -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/log/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/log/color.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/log/white.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/log/white.go -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/labstack/gommon/random/random.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/connector.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lib/pq 2 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/ssl_go1.7.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/ssl_permissions.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_renegotiation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/ssl_renegotiation.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/README.md -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/default.go -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/flat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/flat.go -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/gometalinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/gometalinter.json -------------------------------------------------------------------------------- /vendor/github.com/matcornic/hermes/hermes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/matcornic/hermes/hermes.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/colorable_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/colorable_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/colorable_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/colorable_others.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/colorable_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/colorable_windows.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/noncolorable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-colorable/noncolorable.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_linux.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_others.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-isatty/isatty_windows.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/README.mkd -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/runewidth.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_js.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_posix.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_windows.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/README.md -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/csv.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/table.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/table_with_color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/table_with_color.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/util.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/tablewriter/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/olekukonko/tablewriter/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/generator.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/shurcooL/sanitized_anchor_name/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/sanitized_anchor_name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/shurcooL/sanitized_anchor_name/README.md -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/sanitized_anchor_name/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/shurcooL/sanitized_anchor_name/main.go -------------------------------------------------------------------------------- /vendor/github.com/ssor/bom/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/ssor/bom/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ssor/bom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/ssor/bom/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ssor/bom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/ssor/bom/README.md -------------------------------------------------------------------------------- /vendor/github.com/ssor/bom/bom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/ssor/bom/bom.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/README.md -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/bytebuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/bytebuffer.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/doc.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/bytebufferpool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/bytebufferpool/pool.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasttemplate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/fasttemplate/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasttemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/fasttemplate/README.md -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasttemplate/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/fasttemplate/template.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasttemplate/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/fasttemplate/unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasttemplate/unsafe_gae.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/github.com/valyala/fasttemplate/unsafe_gae.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/autocert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/autocert/autocert.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/autocert/listener.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/renewal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/autocert/renewal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_aix_ppc64.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc64.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_unveil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/openbsd_unveil.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemipsle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zptracemipsle_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/encodedword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/encodedword.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/pool.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/pool_go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/pool_go12.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/reader.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alexcesaro/quotedprintable.v3/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/alexcesaro/quotedprintable.v3/writer.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/auth.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/message.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/mime.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/mime_go14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/mime_go14.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/send.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/smtp.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gomail.v2/writeto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/gomail.v2/writeto.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/block.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/esc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/esc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/russross/blackfriday/v2 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/html.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/inline.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/markdown.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/node.go -------------------------------------------------------------------------------- /vendor/gopkg.in/russross/blackfriday.v2/smartypants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevilain/postgrest-auth/HEAD/vendor/gopkg.in/russross/blackfriday.v2/smartypants.go --------------------------------------------------------------------------------