[cardcity] Proposal
commit79f57120668c34145aa1a4e1e0609131963266b8
authorGerald Mouse <gerald.mouse@func.xyz>
Wed, 8 May 2024 17:36:13 +0000 (9 01:36 +0800)
committerGerald Mouse <gerald.mouse@func.xyz>
Wed, 8 May 2024 17:36:13 +0000 (9 01:36 +0800)
tree0a111ee6014dd2d4995d3bc310a4a58e5a5c8021
parentc6532eedfc2e8eecad88f893e08ab3b0bae21f6b
[cardcity] Proposal
459 files changed:
Makefile
src/func.xyz/bard/logserv/main.go
src/func.xyz/cardcity/cmd/cardcity-cron/main.go [new file with mode: 0644]
src/func.xyz/cardcity/cmd/cardcity-gate/main.go [new file with mode: 0644]
src/func.xyz/cardcity/cmd/cardcity-updater/main.go [new file with mode: 0644]
src/func.xyz/cardcity/etc/config.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/cron/mission_queue.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/dao/city.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/dao/db.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/dao/mission.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/dao/player.go [new file with mode: 0644]
src/func.xyz/cardcity/internal/updater/dispatcher.go [new file with mode: 0644]
src/func.xyz/cardcity/model/attrs.go [new file with mode: 0644]
src/func.xyz/cardcity/model/dummy.yaml [new file with mode: 0644]
src/func.xyz/cardcity/model/embed.go [new file with mode: 0644]
src/func.xyz/cardcity/model/object.go [new file with mode: 0644]
src/func.xyz/cardcity/model/types.go [new file with mode: 0644]
src/func.xyz/cardcity/web/index.html [new file with mode: 0644]
src/func.xyz/etc/mongodb.go [new file with mode: 0644]
src/func.xyz/etc/ports.go
src/func.xyz/go.mod
src/func.xyz/go.sum
src/func.xyz/golang-layout/web/README.md [new file with mode: 0644]
src/func.xyz/golang-layout/web/app/.keep [new file with mode: 0644]
src/func.xyz/golang-layout/web/static/.keep [new file with mode: 0644]
src/func.xyz/golang-layout/web/template/.keep [new file with mode: 0644]
src/func.xyz/pkg/xcontainer/ring_buff.go
src/func.xyz/vendor/github.com/klauspost/compress/.gitattributes [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/.goreleaser.yml [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/SECURITY.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/compressible.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/bitreader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/bitwriter.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/bytereader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/compress.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/decompress.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/fse/fse.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/gen.sh [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/bitreader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/bitwriter.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/compress.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/decompress.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/decompress_amd64.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/decompress_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/decompress_generic.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/huff0/huff0.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/decode.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/decode_other.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/encode.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/encode_other.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/internal/snapref/snappy.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/s2sx.mod [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/s2sx.sum [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/bitreader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/bitwriter.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/blockdec.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/blockenc.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/blocktype_string.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/bytebuf.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/bytereader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/decodeheader.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/decoder.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/decoder_options.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/dict.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/enc_base.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/enc_best.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/enc_better.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/enc_dfast.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/enc_fast.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/encoder.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/encoder_options.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/framedec.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/frameenc.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_decoder.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_decoder_generic.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_encoder.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/fse_predefined.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/hash.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/history.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_arm64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_asm.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_other.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_safe.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/matchlen_amd64.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/matchlen_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/matchlen_generic.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/seqdec.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.s [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/seqdec_generic.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/seqenc.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/snappy.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/zip.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/klauspost/compress/zstd/zstd.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/.travis.yml [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/CHANGELOG.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/Makefile [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/correlation.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/data.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/data_set_distances.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/deviation.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/errors.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/legacy.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/load.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/max.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/mean.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/median.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/min.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/mode.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/outlier.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/percentile.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/quartile.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/regression.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/round.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/sample.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/sum.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/util.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/montanaflynn/stats/variance.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/pbkdf2/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/pbkdf2/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/pbkdf2/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/pbkdf2/pbkdf2.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/CHANGELOG.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/client.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/client_conv.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/common.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/doc.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/parse.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/scram.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/server.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/scram/server_conv.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/CHANGELOG.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/bidi.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/doc.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/error.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/map.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/profile.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/saslprep.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/set.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/xdg-go/stringprep/tables.go [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/.gitignore [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/.travis.yml [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/README [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/README.md [new file with mode: 0644]
src/func.xyz/vendor/github.com/youmark/pkcs8/pkcs8.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bson.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/array_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/bsoncodec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/byte_slice_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/codec_cache.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/cond_addr_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/default_value_decoders.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/default_value_encoders.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/empty_interface_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/map_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/mode.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/pointer_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/proxy.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/registry.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/slice_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/string_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/struct_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/struct_tag_parser.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/time_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/types.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsoncodec/uint_codec.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/byte_slice_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/empty_interface_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/map_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/slice_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/string_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/struct_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/time_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonoptions/uint_codec_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/copier.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_parser.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_reader.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_tables.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_wrappers.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/extjson_writer.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/json_scanner.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/mode.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/reader.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/value_reader.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/value_writer.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsonrw/writer.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/bsontype/bsontype.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/decoder.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/encoder.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/marshal.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/primitive/decimal.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/primitive/objectid.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/primitive/primitive.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/primitive_codecs.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/raw.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/raw_element.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/raw_value.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/registry.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/types.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/bson/unmarshal.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/event/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/event/monitoring.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/awserr/error.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/awserr/types.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/credentials/chain_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/credentials/credentials.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/signer/v4/header_rules.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/signer/v4/request.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/signer/v4/uri_path.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/signer/v4/v4.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/aws/types.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/bsonutil/bsonutil.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/codecutil/encoding.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/assume_role_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/ec2_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/ecs_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/env_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/imds_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/credproviders/static_provider.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/csfle/csfle.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/csot/csot.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/driverutil/hello.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/driverutil/operation.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/handshake/handshake.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/httputil/httputil.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/logger/component.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/logger/context.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/logger/io_sink.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/logger/level.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/logger/logger.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/ptrutil/int64.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/rand/bits.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/rand/exp.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/rand/normal.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/rand/rand.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/rand/rng.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/randutil/randutil.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/internal/uuid/uuid.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/address/addr.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/background_context.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/batch_cursor.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/bulk_write.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/bulk_write_models.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/change_stream.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/change_stream_deployment.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/client.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/client_encryption.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/collection.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/crypt_retrievers.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/cursor.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/database.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/description.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/server.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/server_kind.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/server_selector.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/topology.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/topology_kind.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/topology_version.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/description/version_range.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/errors.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/index_options_builder.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/index_view.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/mongo.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/mongocryptd.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/aggregateoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/autoencryptionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/bulkwriteoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/changestreamoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/clientencryptionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/clientoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/collectionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/countoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/createcollectionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/datakeyoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/dboptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/deleteoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/distinctoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/encryptoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/estimatedcountoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/findoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/gridfsoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/indexoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/insertoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/listcollectionsoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/listdatabasesoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/loggeroptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/mongooptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/replaceoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/rewrapdatakeyoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/runcmdoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/searchindexoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/serverapioptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/sessionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/transactionoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/options/updateoptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/readconcern/readconcern.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/readpref/mode.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/readpref/options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/readpref/readpref.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/results.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/search_index_view.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/session.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/single_result.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/util.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/mongo/writeconcern/writeconcern.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/tag/tag.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/version/version.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/array.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/bson_arraybuilder.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/bson_documentbuilder.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/bsoncore.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/document.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/document_sequence.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/element.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/tables.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/bsonx/bsoncore/value.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/DESIGN.md [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/auth.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/aws_conv.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/conversation.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/cred.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/creds/awscreds.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/creds/azurecreds.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/creds/gcpcreds.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/default.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/doc.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/gssapi.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/gssapi_not_enabled.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/gssapi_not_supported.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/gss.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/gss_wrapper.c [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/gss_wrapper.h [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/sspi.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/sspi_wrapper.c [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi/sspi_wrapper.h [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/mongodbaws.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/mongodbcr.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/plain.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/sasl.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/scram.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/util.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/auth/x509.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/batch_cursor.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/batches.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/compression.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/connstring/connstring.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/crypt.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/dns/dns.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/driver.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/errors.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/legacy.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/binary.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/errors.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/errors_not_enabled.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt_context.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt_context_not_enabled.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt_kms_context.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt_kms_context_not_enabled.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/mongocrypt_not_enabled.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/options/mongocrypt_context_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/options/mongocrypt_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/mongocrypt/state.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/ocsp/cache.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/ocsp/config.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/ocsp/ocsp.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/ocsp/options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/abort_transaction.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/aggregate.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/command.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/commit_transaction.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/count.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/create.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/create_indexes.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/create_search_indexes.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/delete.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/distinct.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/drop_collection.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/drop_database.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/drop_indexes.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/drop_search_index.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/end_sessions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/errors.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/find.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/find_and_modify.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/hello.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/insert.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/listDatabases.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/list_collections.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/list_indexes.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/update.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation/update_search_index.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/operation_exhaust.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/serverapioptions.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/session/client_session.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/session/cluster_clock.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/session/options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/session/server_session.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/session/session_pool.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/DESIGN.md [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/cancellation_listener.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/connection.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/connection_legacy.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/connection_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/diff.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/errors.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/fsm.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/pool.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/pool_generation_counter.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/rtt_monitor.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/server.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/server_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/tls_connection_source_1_16.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/tls_connection_source_1_17.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/topology.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/topology/topology_options.go [new file with mode: 0644]
src/func.xyz/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/wiremessage/wiremessage.go [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/crypto/ocsp/ocsp.go [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/sync/LICENSE [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/sync/PATENTS [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/sync/errgroup/errgroup.go [new file with mode: 0644]
src/func.xyz/vendor/golang.org/x/sync/singleflight/singleflight.go [new file with mode: 0644]
src/func.xyz/vendor/modules.txt