├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── golangcilint.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── baur │ └── main.go ├── go.mod ├── go.sum ├── internal ├── command │ ├── cleanup.go │ ├── cleanup_db.go │ ├── command_test.go │ ├── completion.go │ ├── diff.go │ ├── diff_inputs.go │ ├── diff_inputs_test.go │ ├── exitcodes.go │ ├── flag │ │ ├── buildstatus.go │ │ ├── datetime.go │ │ ├── datetime_test.go │ │ ├── field.go │ │ ├── format.go │ │ ├── oneof.go │ │ └── sort.go │ ├── helpers.go │ ├── init.go │ ├── init_app.go │ ├── init_bashcomp.go │ ├── init_db.go │ ├── init_fishcomp.go │ ├── init_include.go │ ├── init_powershellcomp.go │ ├── init_repo.go │ ├── init_zshcomp.go │ ├── ls.go │ ├── ls_apps.go │ ├── ls_apps_test.go │ ├── ls_inputs.go │ ├── ls_inputs_test.go │ ├── ls_outputs.go │ ├── ls_runs.go │ ├── ls_runs_test.go │ ├── release.go │ ├── release_create.go │ ├── release_download.go │ ├── release_download_test.go │ ├── release_exists.go │ ├── release_show.go │ ├── release_test.go │ ├── root.go │ ├── run.go │ ├── run_test.go │ ├── show.go │ ├── show_internal_test.go │ ├── show_test.go │ ├── status.go │ ├── status_test.go │ ├── storageinputwrapper.go │ ├── taskinput_test.go │ ├── term │ │ ├── color.go │ │ ├── format.go │ │ └── streams.go │ ├── testdata │ │ ├── multitasks │ │ │ ├── .baur.toml │ │ │ ├── app3 │ │ │ │ ├── .app.toml │ │ │ │ ├── build.sh │ │ │ │ └── check.sh │ │ │ ├── dir1 │ │ │ │ ├── app1 │ │ │ │ │ ├── .app.toml │ │ │ │ │ ├── build.sh │ │ │ │ │ └── check.sh │ │ │ │ └── app2 │ │ │ │ │ ├── .app.toml │ │ │ │ │ ├── build.sh │ │ │ │ │ └── check.sh │ │ │ └── dir2 │ │ │ │ └── app4 │ │ │ │ ├── .app.toml │ │ │ │ ├── build.sh │ │ │ │ └── check.sh │ │ └── var_in_include │ │ │ ├── .baur.toml │ │ │ ├── app1 │ │ │ ├── .app.toml │ │ │ └── app1.txt │ │ │ ├── app2 │ │ │ ├── .app.toml │ │ │ └── app2.txt │ │ │ ├── inputs.toml │ │ │ └── tasks.toml │ ├── upgrade.go │ ├── upgrade_configs.go │ ├── upgrade_configs_test.go │ ├── upgrade_db.go │ ├── upgrade_db_test.go │ └── util_test.go ├── deepcopy │ └── deepcopy.go ├── digest │ ├── digest.go │ ├── digest_test.go │ ├── gitobjectid │ │ └── gitobjectid.go │ └── sha384 │ │ ├── sha384.go │ │ └── sha384_test.go ├── exec │ ├── command.go │ ├── command_linux_test.go │ ├── command_pdeathsig_supported.go │ ├── command_pdeathsig_unsupported.go │ ├── command_test.go │ ├── pdeathsig_test.go │ ├── prefisuffixsaver.go │ └── result.go ├── format │ ├── csv │ │ └── csv.go │ ├── jsonformat │ │ └── json.go │ └── table │ │ └── table.go ├── fs │ ├── fileglob.go │ ├── fileglob_test.go │ ├── fs.go │ ├── fs_nonunix.go │ ├── fs_test.go │ └── fs_unix.go ├── log │ ├── log.go │ ├── testlog.go │ └── testlogwrapper.go ├── output │ ├── docker │ │ ├── docker.go │ │ └── docker_test.go │ ├── filecopy │ │ └── filecopy.go │ └── s3 │ │ ├── logadapter.go │ │ ├── s3.go │ │ └── s3_test.go ├── prettyprint │ └── prettyprint.go ├── resolve │ ├── glob │ │ └── glob.go │ └── gosource │ │ ├── goenv.go │ │ ├── gosource.go │ │ ├── gosource_test.go │ │ └── testdata │ │ ├── embedded_file │ │ ├── baur-test │ │ ├── data │ │ │ ├── a.txt │ │ │ └── b.txt │ │ ├── embed_test.go │ │ ├── go.mod │ │ ├── hello.txt │ │ ├── hello_test.txt │ │ ├── main.go │ │ └── test_config.json │ │ ├── go_mod_non_vendored_deps │ │ ├── generator │ │ │ └── generator.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── test_config.json │ │ ├── multiple_mains_doublestar_file_query │ │ ├── cmd │ │ │ ├── one │ │ │ │ └── main.go │ │ │ └── two │ │ │ │ └── main.go │ │ ├── generator │ │ │ └── generator.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── intstr │ │ │ └── intstr.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ ├── query_all_test_files │ │ ├── generator │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_test.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ ├── query_fileglob_all_test_files │ │ ├── generator │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_test.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ ├── query_fileglob_all_test_files_buildtag │ │ ├── generator │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_test.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ ├── query_main_test_file │ │ ├── generator │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_test.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ ├── query_whole_pkg │ │ ├── generator │ │ │ └── generator.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── test_config.json │ │ └── vendor │ │ │ ├── github.com │ │ │ └── google │ │ │ │ └── uuid │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── hash.go │ │ │ │ ├── marshal.go │ │ │ │ ├── node.go │ │ │ │ ├── node_js.go │ │ │ │ ├── node_net.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ │ └── modules.txt │ │ └── with_gopath │ │ ├── src │ │ └── github.com │ │ │ └── simplesurance │ │ │ └── baur-test │ │ │ ├── generator │ │ │ └── generator.go │ │ │ └── main.go │ │ └── test_config.json ├── routines │ ├── pool.go │ └── pool_test.go ├── set │ └── set.go ├── testutils │ ├── dbtest │ │ └── dbtest.go │ ├── fstest │ │ └── fstest.go │ ├── gittest │ │ └── gittest.go │ ├── logwriter │ │ └── logwrap.go │ ├── repotest │ │ └── repotest.go │ ├── s3test │ │ └── s3test.go │ └── strtest │ │ └── strtest.go ├── validation │ └── validation.go ├── vcs │ └── git │ │ ├── files.go │ │ ├── files_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── repository.go │ │ ├── trackedobjects.go │ │ └── trackedobjects_test.go └── version │ ├── ver │ ├── version.go │ └── version_test.go ├── pkg ├── baur │ ├── app.go │ ├── baur.go │ ├── cfgupgrade.go │ ├── diff.go │ ├── errors.go │ ├── init_test.go │ ├── input.go │ ├── inputenvar.go │ ├── inputfile.go │ ├── inputfile_singletoncache.go │ ├── inputfile_test.go │ ├── inputresolver.go │ ├── inputresolver_cache.go │ ├── inputresolver_test.go │ ├── inputresolver_unix_test.go │ ├── inputs.go │ ├── inputstring.go │ ├── inputtask.go │ ├── loader.go │ ├── loader_specifiers.go │ ├── loader_test.go │ ├── output.go │ ├── outputdockerimage.go │ ├── outputfile.go │ ├── release.go │ ├── releasemanager.go │ ├── repository.go │ ├── repository_test.go │ ├── storage.go │ ├── task.go │ ├── taskinfo.go │ ├── taskinfocreator.go │ ├── taskinfofile.go │ ├── taskrunner.go │ ├── taskrunner_test.go │ ├── taskstatus.go │ ├── taskstatusevaluator.go │ ├── taskstatusevaluator_test.go │ ├── testdata │ │ ├── app_matches_multiple_app_dirs │ │ │ └── app1 │ │ │ │ └── .app.toml │ │ ├── duplicate_app_names │ │ │ ├── .baur.toml │ │ │ ├── app1 │ │ │ │ └── .app.toml │ │ │ └── app2 │ │ │ │ └── .app.toml │ │ └── symlinks │ │ │ ├── directory_broken │ │ │ └── symlink │ │ │ ├── directory_containing_broken_symlink │ │ │ ├── afile │ │ │ └── dir1 │ │ │ │ └── broken_symlink │ │ │ ├── directory_with_files │ │ │ ├── symlink │ │ │ └── thedirectory │ │ │ │ └── arealfile │ │ │ ├── file │ │ │ ├── symlink │ │ │ └── thefile │ │ │ └── file_broken │ │ │ └── symlink │ ├── uploader.go │ └── uploadinfo.go ├── cfg │ ├── app.go │ ├── app_test.go │ ├── cfg.go │ ├── dockerimageoutput.go │ ├── dockerimageregistryupload.go │ ├── envinputs.go │ ├── fielderror.go │ ├── filecopy.go │ ├── fileignorelist.go │ ├── fileinputs.go │ ├── fileoutput.go │ ├── golangsources.go │ ├── include.go │ ├── includedb.go │ ├── includedb_test.go │ ├── input.go │ ├── inputdef.go │ ├── inputinclude.go │ ├── inputincludes.go │ ├── output.go │ ├── outputdef.go │ ├── outputinclude.go │ ├── outputincludes.go │ ├── repository.go │ ├── repository_test.go │ ├── resolver.go │ ├── resolver │ │ ├── gotemplate.go │ │ └── gotemplate_test.go │ ├── s3upload.go │ ├── task.go │ ├── taskdef.go │ ├── taskinclude.go │ ├── taskincludes.go │ ├── taskinfo.go │ ├── tasks.go │ ├── tasks_test.go │ ├── upgrade │ │ └── v5 │ │ │ └── v5.go │ └── validation.go └── storage │ ├── filter.go │ ├── postgres │ ├── client.go │ ├── delete.go │ ├── delete_test.go │ ├── errors.go │ ├── filters_sorters.go │ ├── init_test.go │ ├── insert.go │ ├── insert_test.go │ ├── logadapter.go │ ├── migrations │ │ ├── 1.sql │ │ ├── 2.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ └── 5.sql │ ├── query.go │ ├── query_test.go │ ├── schema.go │ ├── schema_test.go │ └── schema_unit_test.go │ └── storage.go ├── scripts ├── start-psql-container.sh ├── start-s3-container.sh └── ver-is-up2date.sh ├── vendor ├── github.com │ ├── Microsoft │ │ └── go-winio │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── backup.go │ │ │ ├── doc.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── hvsock.go │ │ │ ├── internal │ │ │ ├── fs │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── security.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── socket │ │ │ │ ├── rawaddr.go │ │ │ │ ├── socket.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── stringbuffer │ │ │ │ └── wstring.go │ │ │ ├── pipe.go │ │ │ ├── pkg │ │ │ └── guid │ │ │ │ ├── guid.go │ │ │ │ ├── guid_nonwindows.go │ │ │ │ ├── guid_windows.go │ │ │ │ └── variant_string.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ └── zsyscall_windows.go │ ├── aws │ │ ├── aws-sdk-go-v2 │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws │ │ │ │ ├── accountid_endpoint_mode.go │ │ │ │ ├── arn │ │ │ │ │ └── arn.go │ │ │ │ ├── checksum.go │ │ │ │ ├── config.go │ │ │ │ ├── context.go │ │ │ │ ├── credential_cache.go │ │ │ │ ├── credentials.go │ │ │ │ ├── defaults │ │ │ │ │ ├── auto.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── doc.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── errors.go │ │ │ │ ├── from_ptr.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── logging.go │ │ │ │ ├── logging_generate.go │ │ │ │ ├── middleware │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── osname.go │ │ │ │ │ ├── osname_go115.go │ │ │ │ │ ├── recursion_detection.go │ │ │ │ │ ├── request_id.go │ │ │ │ │ ├── request_id_retriever.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── protocol │ │ │ │ │ ├── eventstream │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── eventstreamapi │ │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ └── transport_go117.go │ │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── header_value.go │ │ │ │ │ │ └── message.go │ │ │ │ │ ├── query │ │ │ │ │ │ ├── array.go │ │ │ │ │ │ ├── encoder.go │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ └── value.go │ │ │ │ │ ├── restjson │ │ │ │ │ │ └── decoder_util.go │ │ │ │ │ └── xml │ │ │ │ │ │ └── error_utils.go │ │ │ │ ├── ratelimit │ │ │ │ │ ├── none.go │ │ │ │ │ ├── token_bucket.go │ │ │ │ │ └── token_rate_limit.go │ │ │ │ ├── request.go │ │ │ │ ├── retry │ │ │ │ │ ├── adaptive.go │ │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ │ ├── attempt_metrics.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── jitter_backoff.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── retry.go │ │ │ │ │ ├── retryable_error.go │ │ │ │ │ ├── standard.go │ │ │ │ │ ├── throttle_error.go │ │ │ │ │ └── timeout_error.go │ │ │ │ ├── retryer.go │ │ │ │ ├── runtime.go │ │ │ │ ├── signer │ │ │ │ │ ├── internal │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── to_ptr.go │ │ │ │ ├── transport │ │ │ │ │ └── http │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── content_type.go │ │ │ │ │ │ ├── response_error.go │ │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ │ └── timeout_read_closer.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ ├── config │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── auth_scheme_preference.go │ │ │ │ ├── config.go │ │ │ │ ├── defaultsmode.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── generate.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── load_options.go │ │ │ │ ├── local.go │ │ │ │ ├── provider.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_bearer_token.go │ │ │ │ ├── resolve_credentials.go │ │ │ │ └── shared_config.go │ │ │ ├── credentials │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── doc.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ ├── internal │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ └── middleware.go │ │ │ │ │ └── provider.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── logincreds │ │ │ │ │ ├── dpop.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── provider.go │ │ │ │ │ └── token.go │ │ │ │ ├── processcreds │ │ │ │ │ ├── doc.go │ │ │ │ │ └── provider.go │ │ │ │ ├── ssocreds │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ │ └── sso_token_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ ├── feature │ │ │ │ ├── ec2 │ │ │ │ │ └── imds │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── api_client.go │ │ │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ │ │ ├── api_op_GetToken.go │ │ │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── resolvers.go │ │ │ │ │ │ ├── request_middleware.go │ │ │ │ │ │ └── token_provider.go │ │ │ │ └── s3 │ │ │ │ │ └── manager │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── api.go │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── bucket_region.go │ │ │ │ │ ├── buffered_read_seeker.go │ │ │ │ │ ├── default_read_seeker_write_to.go │ │ │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ │ │ ├── default_writer_read_from.go │ │ │ │ │ ├── default_writer_read_from_windows.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── download.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── read_seeker_write_to.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── upload.go │ │ │ │ │ └── writer_read_from.go │ │ │ ├── internal │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── scheme.go │ │ │ │ │ └── smithy │ │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ │ ├── smithy.go │ │ │ │ │ │ └── v4signer_adapter.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── configsources │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── context │ │ │ │ │ └── context.go │ │ │ │ ├── endpoints │ │ │ │ │ ├── awsrulesfn │ │ │ │ │ │ ├── arn.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generate.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── partition.go │ │ │ │ │ │ ├── partitions.go │ │ │ │ │ │ └── partitions.json │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── ini │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── sections.go │ │ │ │ │ ├── strings.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── tokenize.go │ │ │ │ │ └── value.go │ │ │ │ ├── middleware │ │ │ │ │ └── middleware.go │ │ │ │ ├── rand │ │ │ │ │ └── rand.go │ │ │ │ ├── sdk │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── time.go │ │ │ │ ├── sdkio │ │ │ │ │ └── byte.go │ │ │ │ ├── shareddefaults │ │ │ │ │ └── shared_config.go │ │ │ │ ├── strings │ │ │ │ │ └── strings.go │ │ │ │ ├── sync │ │ │ │ │ └── singleflight │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ └── singleflight.go │ │ │ │ ├── timeconv │ │ │ │ │ └── duration.go │ │ │ │ └── v4a │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── compare.go │ │ │ │ │ │ └── ecc.go │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4a.go │ │ │ └── service │ │ │ │ ├── internal │ │ │ │ ├── accept-encoding │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── go_module_metadata.go │ │ │ │ ├── checksum │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── algorithms.go │ │ │ │ │ ├── aws_chunked_encoding.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── middleware_add.go │ │ │ │ │ ├── middleware_checksum_metrics_tracking.go │ │ │ │ │ ├── middleware_compute_input_checksum.go │ │ │ │ │ ├── middleware_setup_context.go │ │ │ │ │ └── middleware_validate_output.go │ │ │ │ ├── presigned-url │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ └── middleware.go │ │ │ │ └── s3shared │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── arn │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── arn_member.go │ │ │ │ │ ├── outpost_arn.go │ │ │ │ │ └── s3_object_lambda_arn.go │ │ │ │ │ ├── arn_lookup.go │ │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ │ ├── endpoint_error.go │ │ │ │ │ ├── go_module_metadata.go │ │ │ │ │ ├── host_id.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── metadata_retriever.go │ │ │ │ │ ├── resource_request.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ ├── s3100continue.go │ │ │ │ │ ├── update_endpoint.go │ │ │ │ │ └── xml_utils.go │ │ │ │ ├── s3 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AbortMultipartUpload.go │ │ │ │ ├── api_op_CompleteMultipartUpload.go │ │ │ │ ├── api_op_CopyObject.go │ │ │ │ ├── api_op_CreateBucket.go │ │ │ │ ├── api_op_CreateBucketMetadataConfiguration.go │ │ │ │ ├── api_op_CreateBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_CreateMultipartUpload.go │ │ │ │ ├── api_op_CreateSession.go │ │ │ │ ├── api_op_DeleteBucket.go │ │ │ │ ├── api_op_DeleteBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketCors.go │ │ │ │ ├── api_op_DeleteBucketEncryption.go │ │ │ │ ├── api_op_DeleteBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_DeleteBucketInventoryConfiguration.go │ │ │ │ ├── api_op_DeleteBucketLifecycle.go │ │ │ │ ├── api_op_DeleteBucketMetadataConfiguration.go │ │ │ │ ├── api_op_DeleteBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_DeleteBucketMetricsConfiguration.go │ │ │ │ ├── api_op_DeleteBucketOwnershipControls.go │ │ │ │ ├── api_op_DeleteBucketPolicy.go │ │ │ │ ├── api_op_DeleteBucketReplication.go │ │ │ │ ├── api_op_DeleteBucketTagging.go │ │ │ │ ├── api_op_DeleteBucketWebsite.go │ │ │ │ ├── api_op_DeleteObject.go │ │ │ │ ├── api_op_DeleteObjectTagging.go │ │ │ │ ├── api_op_DeleteObjects.go │ │ │ │ ├── api_op_DeletePublicAccessBlock.go │ │ │ │ ├── api_op_GetBucketAbac.go │ │ │ │ ├── api_op_GetBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_GetBucketAcl.go │ │ │ │ ├── api_op_GetBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_GetBucketCors.go │ │ │ │ ├── api_op_GetBucketEncryption.go │ │ │ │ ├── api_op_GetBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_GetBucketInventoryConfiguration.go │ │ │ │ ├── api_op_GetBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_GetBucketLocation.go │ │ │ │ ├── api_op_GetBucketLogging.go │ │ │ │ ├── api_op_GetBucketMetadataConfiguration.go │ │ │ │ ├── api_op_GetBucketMetadataTableConfiguration.go │ │ │ │ ├── api_op_GetBucketMetricsConfiguration.go │ │ │ │ ├── api_op_GetBucketNotificationConfiguration.go │ │ │ │ ├── api_op_GetBucketOwnershipControls.go │ │ │ │ ├── api_op_GetBucketPolicy.go │ │ │ │ ├── api_op_GetBucketPolicyStatus.go │ │ │ │ ├── api_op_GetBucketReplication.go │ │ │ │ ├── api_op_GetBucketRequestPayment.go │ │ │ │ ├── api_op_GetBucketTagging.go │ │ │ │ ├── api_op_GetBucketVersioning.go │ │ │ │ ├── api_op_GetBucketWebsite.go │ │ │ │ ├── api_op_GetObject.go │ │ │ │ ├── api_op_GetObjectAcl.go │ │ │ │ ├── api_op_GetObjectAttributes.go │ │ │ │ ├── api_op_GetObjectLegalHold.go │ │ │ │ ├── api_op_GetObjectLockConfiguration.go │ │ │ │ ├── api_op_GetObjectRetention.go │ │ │ │ ├── api_op_GetObjectTagging.go │ │ │ │ ├── api_op_GetObjectTorrent.go │ │ │ │ ├── api_op_GetPublicAccessBlock.go │ │ │ │ ├── api_op_HeadBucket.go │ │ │ │ ├── api_op_HeadObject.go │ │ │ │ ├── api_op_ListBucketAnalyticsConfigurations.go │ │ │ │ ├── api_op_ListBucketIntelligentTieringConfigurations.go │ │ │ │ ├── api_op_ListBucketInventoryConfigurations.go │ │ │ │ ├── api_op_ListBucketMetricsConfigurations.go │ │ │ │ ├── api_op_ListBuckets.go │ │ │ │ ├── api_op_ListDirectoryBuckets.go │ │ │ │ ├── api_op_ListMultipartUploads.go │ │ │ │ ├── api_op_ListObjectVersions.go │ │ │ │ ├── api_op_ListObjects.go │ │ │ │ ├── api_op_ListObjectsV2.go │ │ │ │ ├── api_op_ListParts.go │ │ │ │ ├── api_op_PutBucketAbac.go │ │ │ │ ├── api_op_PutBucketAccelerateConfiguration.go │ │ │ │ ├── api_op_PutBucketAcl.go │ │ │ │ ├── api_op_PutBucketAnalyticsConfiguration.go │ │ │ │ ├── api_op_PutBucketCors.go │ │ │ │ ├── api_op_PutBucketEncryption.go │ │ │ │ ├── api_op_PutBucketIntelligentTieringConfiguration.go │ │ │ │ ├── api_op_PutBucketInventoryConfiguration.go │ │ │ │ ├── api_op_PutBucketLifecycleConfiguration.go │ │ │ │ ├── api_op_PutBucketLogging.go │ │ │ │ ├── api_op_PutBucketMetricsConfiguration.go │ │ │ │ ├── api_op_PutBucketNotificationConfiguration.go │ │ │ │ ├── api_op_PutBucketOwnershipControls.go │ │ │ │ ├── api_op_PutBucketPolicy.go │ │ │ │ ├── api_op_PutBucketReplication.go │ │ │ │ ├── api_op_PutBucketRequestPayment.go │ │ │ │ ├── api_op_PutBucketTagging.go │ │ │ │ ├── api_op_PutBucketVersioning.go │ │ │ │ ├── api_op_PutBucketWebsite.go │ │ │ │ ├── api_op_PutObject.go │ │ │ │ ├── api_op_PutObjectAcl.go │ │ │ │ ├── api_op_PutObjectLegalHold.go │ │ │ │ ├── api_op_PutObjectLockConfiguration.go │ │ │ │ ├── api_op_PutObjectRetention.go │ │ │ │ ├── api_op_PutObjectTagging.go │ │ │ │ ├── api_op_PutPublicAccessBlock.go │ │ │ │ ├── api_op_RenameObject.go │ │ │ │ ├── api_op_RestoreObject.go │ │ │ │ ├── api_op_SelectObjectContent.go │ │ │ │ ├── api_op_UpdateBucketMetadataInventoryTableConfiguration.go │ │ │ │ ├── api_op_UpdateBucketMetadataJournalTableConfiguration.go │ │ │ │ ├── api_op_UploadPart.go │ │ │ │ ├── api_op_UploadPartCopy.go │ │ │ │ ├── api_op_WriteGetObjectResponse.go │ │ │ │ ├── auth.go │ │ │ │ ├── bucket_context.go │ │ │ │ ├── bucketer.go │ │ │ │ ├── create_mpu_checksum.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint_auth_resolver.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── eventstream.go │ │ │ │ ├── express.go │ │ │ │ ├── express_default.go │ │ │ │ ├── express_resolve.go │ │ │ │ ├── express_user_agent.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── handwritten_paginators.go │ │ │ │ ├── internal │ │ │ │ │ ├── arn │ │ │ │ │ │ └── arn_parser.go │ │ │ │ │ ├── customizations │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── express.go │ │ │ │ │ │ ├── express_config.go │ │ │ │ │ │ ├── express_default_checksum.go │ │ │ │ │ │ ├── express_properties.go │ │ │ │ │ │ ├── express_signer.go │ │ │ │ │ │ ├── express_signer_smithy.go │ │ │ │ │ │ ├── handle_200_error.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── presigned_expires.go │ │ │ │ │ │ ├── process_arn_resource.go │ │ │ │ │ │ ├── remove_bucket_middleware.go │ │ │ │ │ │ ├── s3_object_lambda.go │ │ │ │ │ │ ├── signer_wrapper.go │ │ │ │ │ │ └── update_endpoint.go │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── presign_post.go │ │ │ │ ├── serialize_immutable_hostname_bucket.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ ├── uri_context.go │ │ │ │ └── validators.go │ │ │ │ ├── signin │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_CreateOAuth2Token.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── sso │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ │ ├── api_op_ListAccountRoles.go │ │ │ │ ├── api_op_ListAccounts.go │ │ │ │ ├── api_op_Logout.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ ├── ssooidc │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_CreateToken.go │ │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ │ ├── api_op_RegisterClient.go │ │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ │ └── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ │ │ └── sts │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_AssumeRole.go │ │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ │ ├── api_op_AssumeRoot.go │ │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ │ ├── api_op_GetDelegatedAccessToken.go │ │ │ │ ├── api_op_GetFederationToken.go │ │ │ │ ├── api_op_GetSessionToken.go │ │ │ │ ├── api_op_GetWebIdentityToken.go │ │ │ │ ├── auth.go │ │ │ │ ├── deserializers.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── generated.json │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ │ ├── options.go │ │ │ │ ├── serializers.go │ │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ │ └── validators.go │ │ └── smithy-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── bearer │ │ │ │ ├── docs.go │ │ │ │ ├── middleware.go │ │ │ │ ├── token.go │ │ │ │ └── token_cache.go │ │ │ ├── identity.go │ │ │ ├── option.go │ │ │ └── scheme_id.go │ │ │ ├── changelog-template.json │ │ │ ├── container │ │ │ └── private │ │ │ │ └── cache │ │ │ │ ├── cache.go │ │ │ │ └── lru │ │ │ │ └── lru.go │ │ │ ├── context │ │ │ └── suppress_expired.go │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ └── errors.go │ │ │ ├── encoding │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── httpbinding │ │ │ │ ├── encode.go │ │ │ │ ├── header.go │ │ │ │ ├── path_replace.go │ │ │ │ ├── query.go │ │ │ │ └── uri.go │ │ │ ├── json │ │ │ │ ├── array.go │ │ │ │ ├── constants.go │ │ │ │ ├── decoder_util.go │ │ │ │ ├── encoder.go │ │ │ │ ├── escape.go │ │ │ │ ├── object.go │ │ │ │ └── value.go │ │ │ └── xml │ │ │ │ ├── array.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── element.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error_utils.go │ │ │ │ ├── escape.go │ │ │ │ ├── map.go │ │ │ │ ├── value.go │ │ │ │ └── xml_decoder.go │ │ │ ├── endpoints │ │ │ ├── endpoint.go │ │ │ └── private │ │ │ │ └── rulesfn │ │ │ │ ├── doc.go │ │ │ │ ├── strings.go │ │ │ │ └── uri.go │ │ │ ├── errors.go │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ ├── docs.go │ │ │ │ └── singleflight.go │ │ │ ├── io │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── reader.go │ │ │ └── ringbuffer.go │ │ │ ├── local-mod-replace.sh │ │ │ ├── logging │ │ │ └── logger.go │ │ │ ├── metrics │ │ │ ├── metrics.go │ │ │ └── nop.go │ │ │ ├── middleware │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── logging.go │ │ │ ├── metadata.go │ │ │ ├── middleware.go │ │ │ ├── ordered_group.go │ │ │ ├── stack.go │ │ │ ├── stack_values.go │ │ │ ├── step_build.go │ │ │ ├── step_deserialize.go │ │ │ ├── step_finalize.go │ │ │ ├── step_initialize.go │ │ │ └── step_serialize.go │ │ │ ├── modman.toml │ │ │ ├── private │ │ │ └── requestcompression │ │ │ │ ├── gzip.go │ │ │ │ ├── middleware_capture_request_compression.go │ │ │ │ └── request_compression.go │ │ │ ├── properties.go │ │ │ ├── ptr │ │ │ ├── doc.go │ │ │ ├── from_ptr.go │ │ │ ├── gen_scalars.go │ │ │ └── to_ptr.go │ │ │ ├── rand │ │ │ ├── doc.go │ │ │ ├── rand.go │ │ │ └── uuid.go │ │ │ ├── sync │ │ │ └── error.go │ │ │ ├── time │ │ │ └── time.go │ │ │ ├── tracing │ │ │ ├── context.go │ │ │ ├── nop.go │ │ │ └── tracing.go │ │ │ ├── transport │ │ │ └── http │ │ │ │ ├── auth.go │ │ │ │ ├── auth_schemes.go │ │ │ │ ├── checksum_middleware.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── headerlist.go │ │ │ │ ├── host.go │ │ │ │ ├── interceptor.go │ │ │ │ ├── interceptor_middleware.go │ │ │ │ ├── internal │ │ │ │ └── io │ │ │ │ │ └── safe.go │ │ │ │ ├── md5_checksum.go │ │ │ │ ├── metrics.go │ │ │ │ ├── middleware_close_response_body.go │ │ │ │ ├── middleware_content_length.go │ │ │ │ ├── middleware_header_comment.go │ │ │ │ ├── middleware_headers.go │ │ │ │ ├── middleware_http_logging.go │ │ │ │ ├── middleware_metadata.go │ │ │ │ ├── middleware_min_proto.go │ │ │ │ ├── properties.go │ │ │ │ ├── request.go │ │ │ │ ├── response.go │ │ │ │ ├── time.go │ │ │ │ ├── url.go │ │ │ │ └── user_agent.go │ │ │ ├── validation.go │ │ │ └── waiter │ │ │ ├── logger.go │ │ │ └── waiter.go │ ├── bmatcuk │ │ └── doublestar │ │ │ └── v4 │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── doublestar.go │ │ │ ├── glob.go │ │ │ ├── globoptions.go │ │ │ ├── globwalk.go │ │ │ ├── match.go │ │ │ ├── utils.go │ │ │ └── validate.go │ ├── containerd │ │ └── errdefs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── errhttp │ │ │ │ └── http.go │ │ │ └── internal │ │ │ │ └── cause │ │ │ │ └── cause.go │ │ │ └── resolve.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── distribution │ │ └── reference │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── distribution-logo.svg │ │ │ ├── helpers.go │ │ │ ├── normalize.go │ │ │ ├── reference.go │ │ │ ├── regexp.go │ │ │ └── sort.go │ ├── docker │ │ ├── cli │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── cli │ │ │ │ └── config │ │ │ │ ├── config.go │ │ │ │ ├── configfile │ │ │ │ ├── file.go │ │ │ │ ├── file_unix.go │ │ │ │ └── file_windows.go │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── default_store.go │ │ │ │ ├── default_store_darwin.go │ │ │ │ ├── default_store_linux.go │ │ │ │ ├── default_store_unsupported.go │ │ │ │ ├── default_store_windows.go │ │ │ │ ├── file_store.go │ │ │ │ └── native_store.go │ │ │ │ ├── memorystore │ │ │ │ └── store.go │ │ │ │ └── types │ │ │ │ └── authconfig.go │ │ ├── docker-credential-helpers │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ └── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── helper.go │ │ │ │ └── version.go │ │ ├── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── swagger-gen.yaml │ │ │ │ ├── swagger.yaml │ │ │ │ └── types │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── build │ │ │ │ │ ├── build.go │ │ │ │ │ ├── cache.go │ │ │ │ │ └── disk_usage.go │ │ │ │ │ ├── checkpoint │ │ │ │ │ ├── list.go │ │ │ │ │ └── options.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── common │ │ │ │ │ └── id_response.go │ │ │ │ │ ├── container │ │ │ │ │ ├── change_type.go │ │ │ │ │ ├── change_types.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── create_request.go │ │ │ │ │ ├── create_response.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── filesystem_change.go │ │ │ │ │ ├── health.go │ │ │ │ │ ├── hostconfig.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ ├── network_settings.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── top_response.go │ │ │ │ │ ├── update_response.go │ │ │ │ │ ├── wait_exit_error.go │ │ │ │ │ ├── wait_response.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── error_response_ext.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── filters_deprecated.go │ │ │ │ │ └── parse.go │ │ │ │ │ ├── image │ │ │ │ │ ├── delete_response.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_history.go │ │ │ │ │ ├── image_inspect.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── opts.go │ │ │ │ │ └── summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ ├── create_response.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── ipam.go │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authconfig.go │ │ │ │ │ ├── authenticate.go │ │ │ │ │ ├── registry.go │ │ │ │ │ └── search.go │ │ │ │ │ ├── storage │ │ │ │ │ └── driver_data.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ └── runtime.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_create_response.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── system │ │ │ │ │ ├── info.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── security_opts.go │ │ │ │ │ ├── time │ │ │ │ │ └── timestamp.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_deprecated.go │ │ │ │ │ ├── versions │ │ │ │ │ └── compare.go │ │ │ │ │ └── volume │ │ │ │ │ ├── cluster_volume.go │ │ │ │ │ ├── create_options.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── list_response.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume_update.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── build_cancel.go │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── client.go │ │ │ │ ├── client_deprecated.go │ │ │ │ ├── client_interfaces.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── config_create.go │ │ │ │ ├── config_inspect.go │ │ │ │ ├── config_list.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── config_update.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_prune.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── envvars.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_history_opts.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_inspect_opts.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_load_opts.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_save_opts.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── info.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_update.go │ │ │ │ ├── options.go │ │ │ │ ├── ping.go │ │ │ │ ├── plugin_create.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_upgrade.go │ │ │ │ ├── request.go │ │ │ │ ├── secret_create.go │ │ │ │ ├── secret_inspect.go │ │ │ │ ├── secret_list.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── secret_update.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_logs.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_update.go │ │ │ │ ├── swarm_get_unlock_key.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_logs.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_prune.go │ │ │ │ ├── volume_remove.go │ │ │ │ └── volume_update.go │ │ │ └── errdefs │ │ │ │ ├── defs.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── http_helpers.go │ │ │ │ └── is.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_windows.go │ │ │ └── doc.go │ ├── felixge │ │ └── httpsnoop │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── capture_metrics.go │ │ │ ├── docs.go │ │ │ ├── wrap_generated_gteq_1.8.go │ │ │ └── wrap_generated_lt_1.8.go │ ├── go-logr │ │ ├── logr │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr │ │ │ │ ├── funcr.go │ │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ │ └── stdr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── stdr.go │ ├── golang │ │ └── groupcache │ │ │ ├── LICENSE │ │ │ └── lru │ │ │ └── lru.go │ ├── google │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ └── trap_windows.go │ ├── jackc │ │ ├── chunkreader │ │ │ └── v2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── chunkreader.go │ │ ├── pgconn │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth_scram.go │ │ │ ├── config.go │ │ │ ├── defaults.go │ │ │ ├── defaults_windows.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── ctxwatch │ │ │ │ │ └── context_watcher.go │ │ │ ├── krb5.go │ │ │ ├── pgconn.go │ │ │ └── stmtcache │ │ │ │ ├── lru.go │ │ │ │ └── stmtcache.go │ │ ├── pgio │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── write.go │ │ ├── pgpassfile │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgpass.go │ │ ├── pgproto3 │ │ │ └── v2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── authentication_cleartext_password.go │ │ │ │ ├── authentication_gss.go │ │ │ │ ├── authentication_gss_continue.go │ │ │ │ ├── authentication_md5_password.go │ │ │ │ ├── authentication_ok.go │ │ │ │ ├── authentication_sasl.go │ │ │ │ ├── authentication_sasl_continue.go │ │ │ │ ├── authentication_sasl_final.go │ │ │ │ ├── backend.go │ │ │ │ ├── backend_key_data.go │ │ │ │ ├── big_endian.go │ │ │ │ ├── bind.go │ │ │ │ ├── bind_complete.go │ │ │ │ ├── cancel_request.go │ │ │ │ ├── chunkreader.go │ │ │ │ ├── close.go │ │ │ │ ├── close_complete.go │ │ │ │ ├── command_complete.go │ │ │ │ ├── copy_both_response.go │ │ │ │ ├── copy_data.go │ │ │ │ ├── copy_done.go │ │ │ │ ├── copy_fail.go │ │ │ │ ├── copy_in_response.go │ │ │ │ ├── copy_out_response.go │ │ │ │ ├── data_row.go │ │ │ │ ├── describe.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_query_response.go │ │ │ │ ├── error_response.go │ │ │ │ ├── execute.go │ │ │ │ ├── flush.go │ │ │ │ ├── frontend.go │ │ │ │ ├── function_call.go │ │ │ │ ├── function_call_response.go │ │ │ │ ├── gss_enc_request.go │ │ │ │ ├── gss_response.go │ │ │ │ ├── no_data.go │ │ │ │ ├── notice_response.go │ │ │ │ ├── notification_response.go │ │ │ │ ├── parameter_description.go │ │ │ │ ├── parameter_status.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_complete.go │ │ │ │ ├── password_message.go │ │ │ │ ├── pgproto3.go │ │ │ │ ├── portal_suspended.go │ │ │ │ ├── query.go │ │ │ │ ├── ready_for_query.go │ │ │ │ ├── row_description.go │ │ │ │ ├── sasl_initial_response.go │ │ │ │ ├── sasl_response.go │ │ │ │ ├── ssl_request.go │ │ │ │ ├── startup_message.go │ │ │ │ ├── sync.go │ │ │ │ └── terminate.go │ │ ├── pgservicefile │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgservicefile.go │ │ ├── pgtype │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aclitem.go │ │ │ ├── aclitem_array.go │ │ │ ├── array.go │ │ │ ├── array_type.go │ │ │ ├── bit.go │ │ │ ├── bool.go │ │ │ ├── bool_array.go │ │ │ ├── box.go │ │ │ ├── bpchar.go │ │ │ ├── bpchar_array.go │ │ │ ├── bytea.go │ │ │ ├── bytea_array.go │ │ │ ├── cid.go │ │ │ ├── cidr.go │ │ │ ├── cidr_array.go │ │ │ ├── circle.go │ │ │ ├── composite_fields.go │ │ │ ├── composite_type.go │ │ │ ├── convert.go │ │ │ ├── database_sql.go │ │ │ ├── date.go │ │ │ ├── date_array.go │ │ │ ├── daterange.go │ │ │ ├── enum_array.go │ │ │ ├── enum_type.go │ │ │ ├── float4.go │ │ │ ├── float4_array.go │ │ │ ├── float8.go │ │ │ ├── float8_array.go │ │ │ ├── generic_binary.go │ │ │ ├── generic_text.go │ │ │ ├── hstore.go │ │ │ ├── hstore_array.go │ │ │ ├── inet.go │ │ │ ├── inet_array.go │ │ │ ├── int2.go │ │ │ ├── int2_array.go │ │ │ ├── int4.go │ │ │ ├── int4_array.go │ │ │ ├── int4_multirange.go │ │ │ ├── int4range.go │ │ │ ├── int8.go │ │ │ ├── int8_array.go │ │ │ ├── int8_multirange.go │ │ │ ├── int8range.go │ │ │ ├── interval.go │ │ │ ├── json.go │ │ │ ├── json_array.go │ │ │ ├── jsonb.go │ │ │ ├── jsonb_array.go │ │ │ ├── line.go │ │ │ ├── lseg.go │ │ │ ├── ltree.go │ │ │ ├── macaddr.go │ │ │ ├── macaddr_array.go │ │ │ ├── multirange.go │ │ │ ├── name.go │ │ │ ├── num_multirange.go │ │ │ ├── numeric.go │ │ │ ├── numeric_array.go │ │ │ ├── numrange.go │ │ │ ├── oid.go │ │ │ ├── oid_value.go │ │ │ ├── path.go │ │ │ ├── pgtype.go │ │ │ ├── pguint32.go │ │ │ ├── point.go │ │ │ ├── polygon.go │ │ │ ├── qchar.go │ │ │ ├── range.go │ │ │ ├── record.go │ │ │ ├── record_array.go │ │ │ ├── text.go │ │ │ ├── text_array.go │ │ │ ├── tid.go │ │ │ ├── time.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_array.go │ │ │ ├── timestamptz.go │ │ │ ├── timestamptz_array.go │ │ │ ├── tsrange.go │ │ │ ├── tsrange_array.go │ │ │ ├── tstzrange.go │ │ │ ├── tstzrange_array.go │ │ │ ├── typed_array.go.erb │ │ │ ├── typed_array_gen.sh │ │ │ ├── typed_multirange.go.erb │ │ │ ├── typed_multirange_gen.sh │ │ │ ├── typed_range.go.erb │ │ │ ├── typed_range_gen.sh │ │ │ ├── unknown.go │ │ │ ├── uuid.go │ │ │ ├── uuid_array.go │ │ │ ├── varbit.go │ │ │ ├── varchar.go │ │ │ ├── varchar_array.go │ │ │ └── xid.go │ │ ├── pgx │ │ │ └── v4 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── batch.go │ │ │ │ ├── conn.go │ │ │ │ ├── copy_from.go │ │ │ │ ├── doc.go │ │ │ │ ├── extended_query_builder.go │ │ │ │ ├── go_stdlib.go │ │ │ │ ├── internal │ │ │ │ └── sanitize │ │ │ │ │ └── sanitize.go │ │ │ │ ├── large_objects.go │ │ │ │ ├── logger.go │ │ │ │ ├── messages.go │ │ │ │ ├── pgxpool │ │ │ │ ├── batch_results.go │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── pool.go │ │ │ │ ├── rows.go │ │ │ │ ├── stat.go │ │ │ │ └── tx.go │ │ │ │ ├── rows.go │ │ │ │ ├── tx.go │ │ │ │ └── values.go │ │ └── puddle │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── nanotime_time.go │ │ │ ├── nanotime_unsafe.go │ │ │ └── pool.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ ├── moby │ │ └── docker-image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ └── v1 │ │ │ └── image.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ └── image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── artifact.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── pelletier │ │ └── go-toml │ │ │ └── v2 │ │ │ ├── .dockerignore │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.toml │ │ │ ├── .goreleaser.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── ci.sh │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ ├── characters │ │ │ │ ├── ascii.go │ │ │ │ └── utf8.go │ │ │ ├── danger │ │ │ │ ├── danger.go │ │ │ │ └── typeid.go │ │ │ └── tracker │ │ │ │ ├── key.go │ │ │ │ ├── seen.go │ │ │ │ └── tracker.go │ │ │ ├── localtime.go │ │ │ ├── marshaler.go │ │ │ ├── strict.go │ │ │ ├── toml.abnf │ │ │ ├── types.go │ │ │ ├── unmarshaler.go │ │ │ └── unstable │ │ │ ├── ast.go │ │ │ ├── builder.go │ │ │ ├── doc.go │ │ │ ├── kind.go │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ └── unmarshaler.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── simplesurance │ │ └── baur │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── storage │ │ │ ├── filter.go │ │ │ ├── postgres │ │ │ ├── client.go │ │ │ ├── errors.go │ │ │ ├── filters_sorters.go │ │ │ ├── insert.go │ │ │ ├── logadapter.go │ │ │ ├── query.go │ │ │ └── schema.go │ │ │ └── storage.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── spf13 │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── active_help.go │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completionsV2.go │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── completions.go │ │ │ ├── fish_completions.go │ │ │ ├── flag_groups.go │ │ │ ├── powershell_completions.go │ │ │ ├── shell_completions.go │ │ │ └── zsh_completions.go │ │ └── pflag │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_func.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── errors.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── func.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int32_slice.go │ │ │ ├── int64.go │ │ │ ├── int64_slice.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_slice.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int64.go │ │ │ ├── string_to_string.go │ │ │ ├── text.go │ │ │ ├── time.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ └── stretchr │ │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── go.opentelemetry.io │ ├── auto │ │ └── sdk │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── VERSIONING.md │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ │ ├── limit.go │ │ │ ├── span.go │ │ │ ├── tracer.go │ │ │ └── tracer_provider.go │ ├── contrib │ │ └── instrumentation │ │ │ └── net │ │ │ └── http │ │ │ └── otelhttp │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ └── semconvutil │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ └── netconv.go │ │ │ ├── labeler.go │ │ │ ├── transport.go │ │ │ ├── version.go │ │ │ └── wrap.go │ └── otel │ │ ├── .clomonitor.yml │ │ ├── .codespellignore │ │ ├── .codespellrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .lycheeignore │ │ ├── .markdownlint.yaml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── SECURITY-INSIGHTS.yml │ │ ├── VERSIONING.md │ │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ │ ├── dependencies.Dockerfile │ │ ├── doc.go │ │ ├── error_handler.go │ │ ├── handler.go │ │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ ├── internal_logging.go │ │ ├── metric.go │ │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ │ ├── propagation.go │ │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ │ ├── renovate.json │ │ ├── requirements.txt │ │ ├── semconv │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ └── schema.go │ │ ├── trace.go │ │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ │ ├── verify_released_changelog.sh │ │ ├── version.go │ │ └── versions.yaml ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── exp │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── maps │ │ │ └── maps.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── socks │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ └── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── errgroup │ │ │ └── errgroup.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── 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 │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.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_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.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_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.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_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.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_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.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_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.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_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ └── tag │ │ │ │ └── tag.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ │ └── precis │ │ │ │ ├── class.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── go │ │ ├── ast │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ └── inspector │ │ │ │ ├── cursor.go │ │ │ │ ├── inspector.go │ │ │ │ ├── iter.go │ │ │ │ ├── typeof.go │ │ │ │ └── walk.go │ │ ├── gcexportdata │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── packages │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ └── types │ │ │ ├── objectpath │ │ │ └── objectpath.go │ │ │ └── typeutil │ │ │ ├── callee.go │ │ │ ├── imports.go │ │ │ ├── map.go │ │ │ ├── methodsetcache.go │ │ │ └── ui.go │ │ └── internal │ │ ├── aliases │ │ ├── aliases.go │ │ └── aliases_go122.go │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ └── label │ │ │ └── label.go │ │ ├── gcimporter │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── predeclared.go │ │ ├── support.go │ │ └── ureader_yes.go │ │ ├── gocommand │ │ ├── invoke.go │ │ ├── invoke_notunix.go │ │ ├── invoke_unix.go │ │ ├── vendor.go │ │ └── version.go │ │ ├── packagesinternal │ │ └── packages.go │ │ ├── pkgbits │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ ├── syncmarker_string.go │ │ └── version.go │ │ ├── stdlib │ │ ├── deps.go │ │ ├── import.go │ │ ├── manifest.go │ │ └── stdlib.go │ │ ├── typeparams │ │ ├── common.go │ │ ├── coretype.go │ │ ├── free.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ └── typeterm.go │ │ ├── typesinternal │ │ ├── classify_call.go │ │ ├── element.go │ │ ├── errorcode.go │ │ ├── errorcode_string.go │ │ ├── fx.go │ │ ├── isnamed.go │ │ ├── qualifier.go │ │ ├── recv.go │ │ ├── toonew.go │ │ ├── types.go │ │ ├── varkind.go │ │ ├── varkind_go124.go │ │ └── zerovalue.go │ │ └── versions │ │ ├── features.go │ │ ├── gover.go │ │ ├── types.go │ │ └── versions.go ├── gopkg.in │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt └── ver /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/golangcilint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.github/workflows/golangcilint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/README.md -------------------------------------------------------------------------------- /cmd/baur/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/cmd/baur/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/go.sum -------------------------------------------------------------------------------- /internal/command/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/cleanup.go -------------------------------------------------------------------------------- /internal/command/cleanup_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/cleanup_db.go -------------------------------------------------------------------------------- /internal/command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/command_test.go -------------------------------------------------------------------------------- /internal/command/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/completion.go -------------------------------------------------------------------------------- /internal/command/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/diff.go -------------------------------------------------------------------------------- /internal/command/diff_inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/diff_inputs.go -------------------------------------------------------------------------------- /internal/command/diff_inputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/diff_inputs_test.go -------------------------------------------------------------------------------- /internal/command/exitcodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/exitcodes.go -------------------------------------------------------------------------------- /internal/command/flag/buildstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/buildstatus.go -------------------------------------------------------------------------------- /internal/command/flag/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/datetime.go -------------------------------------------------------------------------------- /internal/command/flag/datetime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/datetime_test.go -------------------------------------------------------------------------------- /internal/command/flag/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/field.go -------------------------------------------------------------------------------- /internal/command/flag/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/format.go -------------------------------------------------------------------------------- /internal/command/flag/oneof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/oneof.go -------------------------------------------------------------------------------- /internal/command/flag/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/flag/sort.go -------------------------------------------------------------------------------- /internal/command/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/helpers.go -------------------------------------------------------------------------------- /internal/command/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init.go -------------------------------------------------------------------------------- /internal/command/init_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_app.go -------------------------------------------------------------------------------- /internal/command/init_bashcomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_bashcomp.go -------------------------------------------------------------------------------- /internal/command/init_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_db.go -------------------------------------------------------------------------------- /internal/command/init_fishcomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_fishcomp.go -------------------------------------------------------------------------------- /internal/command/init_include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_include.go -------------------------------------------------------------------------------- /internal/command/init_powershellcomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_powershellcomp.go -------------------------------------------------------------------------------- /internal/command/init_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_repo.go -------------------------------------------------------------------------------- /internal/command/init_zshcomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/init_zshcomp.go -------------------------------------------------------------------------------- /internal/command/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls.go -------------------------------------------------------------------------------- /internal/command/ls_apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_apps.go -------------------------------------------------------------------------------- /internal/command/ls_apps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_apps_test.go -------------------------------------------------------------------------------- /internal/command/ls_inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_inputs.go -------------------------------------------------------------------------------- /internal/command/ls_inputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_inputs_test.go -------------------------------------------------------------------------------- /internal/command/ls_outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_outputs.go -------------------------------------------------------------------------------- /internal/command/ls_runs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_runs.go -------------------------------------------------------------------------------- /internal/command/ls_runs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/ls_runs_test.go -------------------------------------------------------------------------------- /internal/command/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release.go -------------------------------------------------------------------------------- /internal/command/release_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_create.go -------------------------------------------------------------------------------- /internal/command/release_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_download.go -------------------------------------------------------------------------------- /internal/command/release_download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_download_test.go -------------------------------------------------------------------------------- /internal/command/release_exists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_exists.go -------------------------------------------------------------------------------- /internal/command/release_show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_show.go -------------------------------------------------------------------------------- /internal/command/release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/release_test.go -------------------------------------------------------------------------------- /internal/command/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/root.go -------------------------------------------------------------------------------- /internal/command/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/run.go -------------------------------------------------------------------------------- /internal/command/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/run_test.go -------------------------------------------------------------------------------- /internal/command/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/show.go -------------------------------------------------------------------------------- /internal/command/show_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/show_internal_test.go -------------------------------------------------------------------------------- /internal/command/show_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/show_test.go -------------------------------------------------------------------------------- /internal/command/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/status.go -------------------------------------------------------------------------------- /internal/command/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/status_test.go -------------------------------------------------------------------------------- /internal/command/storageinputwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/storageinputwrapper.go -------------------------------------------------------------------------------- /internal/command/taskinput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/taskinput_test.go -------------------------------------------------------------------------------- /internal/command/term/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/term/color.go -------------------------------------------------------------------------------- /internal/command/term/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/term/format.go -------------------------------------------------------------------------------- /internal/command/term/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/term/streams.go -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/.baur.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/testdata/multitasks/.baur.toml -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/app3/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/app3/check.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir1/app1/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir1/app1/check.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir1/app2/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir1/app2/check.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir2/app4/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/multitasks/dir2/app4/check.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "$0 successful" 4 | -------------------------------------------------------------------------------- /internal/command/testdata/var_in_include/app1/.app.toml: -------------------------------------------------------------------------------- 1 | name = "app1" 2 | 3 | includes = ["{{ .Root }}/tasks.toml#build"] 4 | -------------------------------------------------------------------------------- /internal/command/testdata/var_in_include/app1/app1.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /internal/command/testdata/var_in_include/app2/.app.toml: -------------------------------------------------------------------------------- 1 | name = "app2" 2 | 3 | includes = ["{{ .Root }}/tasks.toml#build"] 4 | -------------------------------------------------------------------------------- /internal/command/testdata/var_in_include/app2/app2.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /internal/command/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/upgrade.go -------------------------------------------------------------------------------- /internal/command/upgrade_configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/upgrade_configs.go -------------------------------------------------------------------------------- /internal/command/upgrade_configs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/upgrade_configs_test.go -------------------------------------------------------------------------------- /internal/command/upgrade_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/upgrade_db.go -------------------------------------------------------------------------------- /internal/command/upgrade_db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/upgrade_db_test.go -------------------------------------------------------------------------------- /internal/command/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/command/util_test.go -------------------------------------------------------------------------------- /internal/deepcopy/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/deepcopy/deepcopy.go -------------------------------------------------------------------------------- /internal/digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/digest/digest.go -------------------------------------------------------------------------------- /internal/digest/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/digest/digest_test.go -------------------------------------------------------------------------------- /internal/digest/gitobjectid/gitobjectid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/digest/gitobjectid/gitobjectid.go -------------------------------------------------------------------------------- /internal/digest/sha384/sha384.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/digest/sha384/sha384.go -------------------------------------------------------------------------------- /internal/digest/sha384/sha384_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/digest/sha384/sha384_test.go -------------------------------------------------------------------------------- /internal/exec/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/command.go -------------------------------------------------------------------------------- /internal/exec/command_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/command_linux_test.go -------------------------------------------------------------------------------- /internal/exec/command_pdeathsig_supported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/command_pdeathsig_supported.go -------------------------------------------------------------------------------- /internal/exec/command_pdeathsig_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/command_pdeathsig_unsupported.go -------------------------------------------------------------------------------- /internal/exec/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/command_test.go -------------------------------------------------------------------------------- /internal/exec/pdeathsig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/pdeathsig_test.go -------------------------------------------------------------------------------- /internal/exec/prefisuffixsaver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/prefisuffixsaver.go -------------------------------------------------------------------------------- /internal/exec/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/exec/result.go -------------------------------------------------------------------------------- /internal/format/csv/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/format/csv/csv.go -------------------------------------------------------------------------------- /internal/format/jsonformat/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/format/jsonformat/json.go -------------------------------------------------------------------------------- /internal/format/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/format/table/table.go -------------------------------------------------------------------------------- /internal/fs/fileglob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fileglob.go -------------------------------------------------------------------------------- /internal/fs/fileglob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fileglob_test.go -------------------------------------------------------------------------------- /internal/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fs.go -------------------------------------------------------------------------------- /internal/fs/fs_nonunix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fs_nonunix.go -------------------------------------------------------------------------------- /internal/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fs_test.go -------------------------------------------------------------------------------- /internal/fs/fs_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/fs/fs_unix.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/log/testlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/log/testlog.go -------------------------------------------------------------------------------- /internal/log/testlogwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/log/testlogwrapper.go -------------------------------------------------------------------------------- /internal/output/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/docker/docker.go -------------------------------------------------------------------------------- /internal/output/docker/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/docker/docker_test.go -------------------------------------------------------------------------------- /internal/output/filecopy/filecopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/filecopy/filecopy.go -------------------------------------------------------------------------------- /internal/output/s3/logadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/s3/logadapter.go -------------------------------------------------------------------------------- /internal/output/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/s3/s3.go -------------------------------------------------------------------------------- /internal/output/s3/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/output/s3/s3_test.go -------------------------------------------------------------------------------- /internal/prettyprint/prettyprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/prettyprint/prettyprint.go -------------------------------------------------------------------------------- /internal/resolve/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/resolve/glob/glob.go -------------------------------------------------------------------------------- /internal/resolve/gosource/goenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/resolve/gosource/goenv.go -------------------------------------------------------------------------------- /internal/resolve/gosource/gosource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/resolve/gosource/gosource.go -------------------------------------------------------------------------------- /internal/resolve/gosource/gosource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/resolve/gosource/gosource_test.go -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/embedded_file/data/a.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/embedded_file/data/b.txt: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/embedded_file/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/simplesurance/baur-test 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/embedded_file/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, baur! 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/embedded_file/hello_test.txt: -------------------------------------------------------------------------------- 1 | Hello, baur test! 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/multiple_mains_doublestar_file_query/intstr/intstr.go: -------------------------------------------------------------------------------- 1 | package intstr 2 | 3 | const One = "One" 4 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/multiple_mains_doublestar_file_query/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/query_all_test_files/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/query_fileglob_all_test_files/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/query_fileglob_all_test_files_buildtag/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/query_main_test_file/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/resolve/gosource/testdata/query_whole_pkg/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /internal/routines/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/routines/pool.go -------------------------------------------------------------------------------- /internal/routines/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/routines/pool_test.go -------------------------------------------------------------------------------- /internal/set/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/set/set.go -------------------------------------------------------------------------------- /internal/testutils/dbtest/dbtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/dbtest/dbtest.go -------------------------------------------------------------------------------- /internal/testutils/fstest/fstest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/fstest/fstest.go -------------------------------------------------------------------------------- /internal/testutils/gittest/gittest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/gittest/gittest.go -------------------------------------------------------------------------------- /internal/testutils/logwriter/logwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/logwriter/logwrap.go -------------------------------------------------------------------------------- /internal/testutils/repotest/repotest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/repotest/repotest.go -------------------------------------------------------------------------------- /internal/testutils/s3test/s3test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/s3test/s3test.go -------------------------------------------------------------------------------- /internal/testutils/strtest/strtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/testutils/strtest/strtest.go -------------------------------------------------------------------------------- /internal/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/validation/validation.go -------------------------------------------------------------------------------- /internal/vcs/git/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/files.go -------------------------------------------------------------------------------- /internal/vcs/git/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/files_test.go -------------------------------------------------------------------------------- /internal/vcs/git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/git.go -------------------------------------------------------------------------------- /internal/vcs/git/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/git_test.go -------------------------------------------------------------------------------- /internal/vcs/git/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/repository.go -------------------------------------------------------------------------------- /internal/vcs/git/trackedobjects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/trackedobjects.go -------------------------------------------------------------------------------- /internal/vcs/git/trackedobjects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/vcs/git/trackedobjects_test.go -------------------------------------------------------------------------------- /internal/version/ver: -------------------------------------------------------------------------------- 1 | 5.4.1 2 | -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /internal/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/internal/version/version_test.go -------------------------------------------------------------------------------- /pkg/baur/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/app.go -------------------------------------------------------------------------------- /pkg/baur/baur.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/baur.go -------------------------------------------------------------------------------- /pkg/baur/cfgupgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/cfgupgrade.go -------------------------------------------------------------------------------- /pkg/baur/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/diff.go -------------------------------------------------------------------------------- /pkg/baur/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/errors.go -------------------------------------------------------------------------------- /pkg/baur/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/init_test.go -------------------------------------------------------------------------------- /pkg/baur/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/input.go -------------------------------------------------------------------------------- /pkg/baur/inputenvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputenvar.go -------------------------------------------------------------------------------- /pkg/baur/inputfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputfile.go -------------------------------------------------------------------------------- /pkg/baur/inputfile_singletoncache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputfile_singletoncache.go -------------------------------------------------------------------------------- /pkg/baur/inputfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputfile_test.go -------------------------------------------------------------------------------- /pkg/baur/inputresolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputresolver.go -------------------------------------------------------------------------------- /pkg/baur/inputresolver_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputresolver_cache.go -------------------------------------------------------------------------------- /pkg/baur/inputresolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputresolver_test.go -------------------------------------------------------------------------------- /pkg/baur/inputresolver_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputresolver_unix_test.go -------------------------------------------------------------------------------- /pkg/baur/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputs.go -------------------------------------------------------------------------------- /pkg/baur/inputstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputstring.go -------------------------------------------------------------------------------- /pkg/baur/inputtask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/inputtask.go -------------------------------------------------------------------------------- /pkg/baur/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/loader.go -------------------------------------------------------------------------------- /pkg/baur/loader_specifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/loader_specifiers.go -------------------------------------------------------------------------------- /pkg/baur/loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/loader_test.go -------------------------------------------------------------------------------- /pkg/baur/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/output.go -------------------------------------------------------------------------------- /pkg/baur/outputdockerimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/outputdockerimage.go -------------------------------------------------------------------------------- /pkg/baur/outputfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/outputfile.go -------------------------------------------------------------------------------- /pkg/baur/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/release.go -------------------------------------------------------------------------------- /pkg/baur/releasemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/releasemanager.go -------------------------------------------------------------------------------- /pkg/baur/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/repository.go -------------------------------------------------------------------------------- /pkg/baur/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/repository_test.go -------------------------------------------------------------------------------- /pkg/baur/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/storage.go -------------------------------------------------------------------------------- /pkg/baur/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/task.go -------------------------------------------------------------------------------- /pkg/baur/taskinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskinfo.go -------------------------------------------------------------------------------- /pkg/baur/taskinfocreator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskinfocreator.go -------------------------------------------------------------------------------- /pkg/baur/taskinfofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskinfofile.go -------------------------------------------------------------------------------- /pkg/baur/taskrunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskrunner.go -------------------------------------------------------------------------------- /pkg/baur/taskrunner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskrunner_test.go -------------------------------------------------------------------------------- /pkg/baur/taskstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskstatus.go -------------------------------------------------------------------------------- /pkg/baur/taskstatusevaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskstatusevaluator.go -------------------------------------------------------------------------------- /pkg/baur/taskstatusevaluator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/taskstatusevaluator_test.go -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/directory_broken/symlink: -------------------------------------------------------------------------------- 1 | nonexistentdir/ -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/directory_containing_broken_symlink/afile: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/directory_containing_broken_symlink/dir1/broken_symlink: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/directory_with_files/symlink: -------------------------------------------------------------------------------- 1 | thedirectory -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/directory_with_files/thedirectory/arealfile: -------------------------------------------------------------------------------- 1 | Do 28. Apr 15:00:10 CEST 2022 2 | -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/file/symlink: -------------------------------------------------------------------------------- 1 | thefile -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/file/thefile: -------------------------------------------------------------------------------- 1 | Do 28. Apr 14:53:55 CEST 2022 2 | -------------------------------------------------------------------------------- /pkg/baur/testdata/symlinks/file_broken/symlink: -------------------------------------------------------------------------------- 1 | nonexistentfile -------------------------------------------------------------------------------- /pkg/baur/uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/uploader.go -------------------------------------------------------------------------------- /pkg/baur/uploadinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/baur/uploadinfo.go -------------------------------------------------------------------------------- /pkg/cfg/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/app.go -------------------------------------------------------------------------------- /pkg/cfg/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/app_test.go -------------------------------------------------------------------------------- /pkg/cfg/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/cfg.go -------------------------------------------------------------------------------- /pkg/cfg/dockerimageoutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/dockerimageoutput.go -------------------------------------------------------------------------------- /pkg/cfg/dockerimageregistryupload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/dockerimageregistryupload.go -------------------------------------------------------------------------------- /pkg/cfg/envinputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/envinputs.go -------------------------------------------------------------------------------- /pkg/cfg/fielderror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/fielderror.go -------------------------------------------------------------------------------- /pkg/cfg/filecopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/filecopy.go -------------------------------------------------------------------------------- /pkg/cfg/fileignorelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/fileignorelist.go -------------------------------------------------------------------------------- /pkg/cfg/fileinputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/fileinputs.go -------------------------------------------------------------------------------- /pkg/cfg/fileoutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/fileoutput.go -------------------------------------------------------------------------------- /pkg/cfg/golangsources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/golangsources.go -------------------------------------------------------------------------------- /pkg/cfg/include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/include.go -------------------------------------------------------------------------------- /pkg/cfg/includedb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/includedb.go -------------------------------------------------------------------------------- /pkg/cfg/includedb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/includedb_test.go -------------------------------------------------------------------------------- /pkg/cfg/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/input.go -------------------------------------------------------------------------------- /pkg/cfg/inputdef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/inputdef.go -------------------------------------------------------------------------------- /pkg/cfg/inputinclude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/inputinclude.go -------------------------------------------------------------------------------- /pkg/cfg/inputincludes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/inputincludes.go -------------------------------------------------------------------------------- /pkg/cfg/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/output.go -------------------------------------------------------------------------------- /pkg/cfg/outputdef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/outputdef.go -------------------------------------------------------------------------------- /pkg/cfg/outputinclude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/outputinclude.go -------------------------------------------------------------------------------- /pkg/cfg/outputincludes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/outputincludes.go -------------------------------------------------------------------------------- /pkg/cfg/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/repository.go -------------------------------------------------------------------------------- /pkg/cfg/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/repository_test.go -------------------------------------------------------------------------------- /pkg/cfg/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/resolver.go -------------------------------------------------------------------------------- /pkg/cfg/resolver/gotemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/resolver/gotemplate.go -------------------------------------------------------------------------------- /pkg/cfg/resolver/gotemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/resolver/gotemplate_test.go -------------------------------------------------------------------------------- /pkg/cfg/s3upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/s3upload.go -------------------------------------------------------------------------------- /pkg/cfg/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/task.go -------------------------------------------------------------------------------- /pkg/cfg/taskdef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/taskdef.go -------------------------------------------------------------------------------- /pkg/cfg/taskinclude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/taskinclude.go -------------------------------------------------------------------------------- /pkg/cfg/taskincludes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/taskincludes.go -------------------------------------------------------------------------------- /pkg/cfg/taskinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/taskinfo.go -------------------------------------------------------------------------------- /pkg/cfg/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/tasks.go -------------------------------------------------------------------------------- /pkg/cfg/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/tasks_test.go -------------------------------------------------------------------------------- /pkg/cfg/upgrade/v5/v5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/upgrade/v5/v5.go -------------------------------------------------------------------------------- /pkg/cfg/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/cfg/validation.go -------------------------------------------------------------------------------- /pkg/storage/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/filter.go -------------------------------------------------------------------------------- /pkg/storage/postgres/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/client.go -------------------------------------------------------------------------------- /pkg/storage/postgres/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/delete.go -------------------------------------------------------------------------------- /pkg/storage/postgres/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/delete_test.go -------------------------------------------------------------------------------- /pkg/storage/postgres/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/errors.go -------------------------------------------------------------------------------- /pkg/storage/postgres/filters_sorters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/filters_sorters.go -------------------------------------------------------------------------------- /pkg/storage/postgres/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/init_test.go -------------------------------------------------------------------------------- /pkg/storage/postgres/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/insert.go -------------------------------------------------------------------------------- /pkg/storage/postgres/insert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/insert_test.go -------------------------------------------------------------------------------- /pkg/storage/postgres/logadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/logadapter.go -------------------------------------------------------------------------------- /pkg/storage/postgres/migrations/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/migrations/1.sql -------------------------------------------------------------------------------- /pkg/storage/postgres/migrations/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/migrations/2.sql -------------------------------------------------------------------------------- /pkg/storage/postgres/migrations/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/migrations/3.sql -------------------------------------------------------------------------------- /pkg/storage/postgres/migrations/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/migrations/4.sql -------------------------------------------------------------------------------- /pkg/storage/postgres/migrations/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/migrations/5.sql -------------------------------------------------------------------------------- /pkg/storage/postgres/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/query.go -------------------------------------------------------------------------------- /pkg/storage/postgres/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/query_test.go -------------------------------------------------------------------------------- /pkg/storage/postgres/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/schema.go -------------------------------------------------------------------------------- /pkg/storage/postgres/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/schema_test.go -------------------------------------------------------------------------------- /pkg/storage/postgres/schema_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/postgres/schema_unit_test.go -------------------------------------------------------------------------------- /pkg/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/pkg/storage/storage.go -------------------------------------------------------------------------------- /scripts/start-psql-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/scripts/start-psql-container.sh -------------------------------------------------------------------------------- /scripts/start-s3-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/scripts/start-s3-container.sh -------------------------------------------------------------------------------- /scripts/ver-is-up2date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/scripts/ver-is-up2date.sh -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/hvsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/hvsock.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/reparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/reparse.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/Microsoft/go-winio/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/auth/auth.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/auth/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/auth/option.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/document.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/document/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/encoding/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/encoding/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/errors.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/io/byte.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/io/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/io/reader.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/metrics/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/metrics/nop.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/modman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/modman.toml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/properties.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/ptr/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/from_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/ptr/from_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/to_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/ptr/to_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/rand/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/rand/rand.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/rand/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/sync/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/sync/error.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/time/time.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/tracing/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/tracing/nop.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/aws/smithy-go/validation.go -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/bmatcuk/doublestar/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/v4/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/bmatcuk/doublestar/v4/glob.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/containerd/errdefs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/containerd/errdefs/README.md -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/containerd/errdefs/errors.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/containerd/errdefs/resolve.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/api/common.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/client/info.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/client/login.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/client/ping.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/client/utils.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/errdefs/defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/errdefs/defs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/errdefs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/errdefs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/errdefs/is.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/docker/errdefs/is.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/fatih/color/color_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/felixge/httpsnoop/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/funcr/funcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/funcr/funcr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/golang/groupcache/lru/lru.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/chunkreader/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/chunkreader/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | vendor/ 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/auth_scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/auth_scram.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/config.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/krb5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/krb5.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/pgconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/pgconn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/stmtcache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgconn/stmtcache/lru.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgio/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgio/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgio/write.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgpassfile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgpassfile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgpassfile/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/pgpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgpassfile/pgpass.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/backend.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/bind.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/close.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/data_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/data_row.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/describe.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/execute.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/flush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/flush.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/frontend.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/no_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/no_data.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/parse.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/pgproto3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/pgproto3.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/query.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgproto3/v2/sync.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgservicefile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgservicefile/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/aclitem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/aclitem.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/aclitem_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/aclitem_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/array_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/array_type.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bit.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bool.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bool_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bool_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/box.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bpchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bpchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bpchar_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bpchar_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bytea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bytea.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bytea_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/bytea_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/cid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cidr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/cidr.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cidr_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/cidr_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/circle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/circle.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/convert.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/database_sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/database_sql.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/date.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/date_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/date_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/daterange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/daterange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/enum_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/enum_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/enum_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/enum_type.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/float4.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float4_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/float4_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/float8.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float8_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/float8_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/generic_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/generic_text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/hstore_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/hstore_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/inet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/inet.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/inet_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/inet_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int2.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int2_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int2_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int4.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int4_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int4range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int8.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int8_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/int8range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/interval.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/json.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/json_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/json_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/jsonb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/jsonb.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/jsonb_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/jsonb_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/line.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/lseg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/lseg.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/ltree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/ltree.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/macaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/macaddr.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/macaddr_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/macaddr_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/multirange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/multirange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/name.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/numeric.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numeric_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/numeric_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/numrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/oid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/oid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/oid_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/oid_value.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/path.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/pgtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/pgtype.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/pguint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/pguint32.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/point.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/polygon.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/qchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/qchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/record.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/record_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/record_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/text_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/text_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/tid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/time.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamptz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/timestamptz.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tsrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/tsrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tsrange_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/tsrange_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tstzrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/tstzrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/unknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/unknown.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/uuid_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/uuid_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/varbit.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/varchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varchar_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/varchar_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/xid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgtype/xid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/batch.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/copy_from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/copy_from.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/go_stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/go_stdlib.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/large_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/large_objects.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/logger.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/messages.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/pool.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/stat.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/pgxpool/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/pgxpool/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/pgx/v4/values.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/nanotime_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/nanotime_time.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/jackc/puddle/pool.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-colorable/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-colorable/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-isatty/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/mattn/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pelletier/go-toml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pelletier/go-toml/v2/ci.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pelletier/go-toml/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pelletier/go-toml/v2/types.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/simplesurance/baur/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/simplesurance/baur/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/active_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/active_help.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/flag_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/cobra/flag_groups.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/bool_func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/ipnet_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/auto/sdk/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/auto/sdk/limit.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/auto/sdk/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/auto/sdk/tracer.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.clomonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.clomonitor.yml -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.codespellrc -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.gitattributes -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/.lycheeignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/RELEASING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/VERSIONING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/attribute/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/attribute/kv.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/baggage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/baggage/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/codes/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/codes/codes.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/codes/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/metric/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/metric/meter.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/propagation.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/renovate.json -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/auto.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/hex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/hex.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/noop.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/trace/tracer.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/go.opentelemetry.io/otel/versions.yaml -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socks/socks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/internal/socks/socks.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/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/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/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/simplesurance/baur/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/simplesurance/baur/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/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/golang.org/x/tools/go/packages/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplesurance/baur/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /ver: -------------------------------------------------------------------------------- 1 | internal/version/ver --------------------------------------------------------------------------------