├── .idea ├── .gitignore ├── ddd-golang.iml ├── modules.xml └── vcs.xml ├── README.md ├── chapter2 ├── anti_corruption.go ├── anti_corruption_test.go ├── grpc │ ├── buf.gen.yaml │ └── user │ │ └── v1 │ │ └── user.proto ├── oapi │ ├── config.yml │ ├── oapi.yaml │ └── payments.gen.go ├── open_host.go ├── preliminary_design.go └── second_pass.go ├── chapter3 ├── anemic_entity.go ├── auction.go ├── order.go ├── refactored_auction_entity.go ├── uuid.go ├── value_objects.go ├── value_objects_test.go └── wallet_aggregate.go ├── chapter4 ├── booking_application_service.go ├── calendar_factory.go ├── calendar_repository.go ├── car_factory.go ├── domain_service_after.go ├── domain_service_before.go └── email_service.go ├── chapter5 ├── README.md ├── cmd │ └── main.go ├── docker-compose.yaml ├── go.mod ├── go.sum └── internal │ ├── coffeelover.go │ ├── loyalty │ └── coffeebux.go │ ├── payment │ ├── means.go │ └── stripe.go │ ├── product.go │ ├── purchase │ ├── purchase.go │ └── repository.go │ └── store │ ├── repository.go │ └── store.go ├── chapter6 ├── docker-compose.yaml ├── dockerfile ├── go.mod ├── go.sum ├── partnerships │ └── main.go └── recommendation │ ├── cmd │ └── main.go │ └── internal │ ├── recommendation │ ├── adapter.go │ ├── handler.go │ └── recommendation.go │ └── transport │ └── transporthttp.go ├── chapter7 └── saga.go ├── chapter8 ├── add_test.go ├── cookies.go ├── cookies_test.go ├── features │ └── add.feature └── mocks │ └── cookies.go ├── gen.go ├── go.mod ├── go.sum └── vendor ├── github.com ├── Rhymond │ └── go-money │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── calculator.go │ │ ├── constants.go │ │ ├── currency.go │ │ ├── formatter.go │ │ ├── money.go │ │ └── mutator.go ├── cucumber │ ├── gherkin-go │ │ └── v13 │ │ │ ├── .gitignore │ │ │ ├── .rsync │ │ │ ├── .subrepo │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── astbuilder.go │ │ │ ├── default.mk │ │ │ ├── dialect.go │ │ │ ├── dialects_builtin.go │ │ │ ├── dialects_builtin.go.jq │ │ │ ├── gherkin-languages.json │ │ │ ├── gherkin.berp │ │ │ ├── gherkin.go │ │ │ ├── matcher.go │ │ │ ├── messages.go │ │ │ ├── parser.go │ │ │ ├── parser.go.razor │ │ │ ├── pickles.go │ │ │ ├── remove_empty.jq │ │ │ ├── test.feature │ │ │ └── test.sh │ └── messages-go │ │ └── v12 │ │ ├── .gitignore │ │ ├── .rsync │ │ ├── .subrepo │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── default.mk │ │ ├── id_generator.go │ │ ├── messages.pb.go │ │ ├── messages.proto │ │ └── time_conversion.go ├── go-bdd │ └── gobdd │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── context_get.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gobdd.go │ │ └── steps.go ├── gofrs │ └── uuid │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── fuzz.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── io │ │ ├── full.go │ │ ├── io.go │ │ ├── uint32.go │ │ └── varint.go │ │ └── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go ├── golang │ └── mock │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gomock │ │ ├── call.go │ │ ├── callset.go │ │ ├── controller.go │ │ └── matchers.go │ │ └── mockgen │ │ └── model │ │ └── model.go ├── google │ └── uuid │ │ ├── .travis.yml │ │ ├── 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 ├── gorilla │ └── mux │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.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 │ ├── jsonb.go │ ├── jsonb_array.go │ ├── line.go │ ├── lseg.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 │ ├── rows.go │ ├── tx.go │ └── values.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── pbkdf2 │ │ └── pbkdf2.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── 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 │ ├── 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 │ ├── go1_1.go │ ├── go1_2.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── tables9.0.0.go │ ├── transform.go │ ├── trieval.go │ └── width.go └── modules.txt /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ddd-golang.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/.idea/ddd-golang.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/README.md -------------------------------------------------------------------------------- /chapter2/anti_corruption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/anti_corruption.go -------------------------------------------------------------------------------- /chapter2/anti_corruption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/anti_corruption_test.go -------------------------------------------------------------------------------- /chapter2/grpc/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/grpc/buf.gen.yaml -------------------------------------------------------------------------------- /chapter2/grpc/user/v1/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/grpc/user/v1/user.proto -------------------------------------------------------------------------------- /chapter2/oapi/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/oapi/config.yml -------------------------------------------------------------------------------- /chapter2/oapi/oapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/oapi/oapi.yaml -------------------------------------------------------------------------------- /chapter2/oapi/payments.gen.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter2/open_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/open_host.go -------------------------------------------------------------------------------- /chapter2/preliminary_design.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/preliminary_design.go -------------------------------------------------------------------------------- /chapter2/second_pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter2/second_pass.go -------------------------------------------------------------------------------- /chapter3/anemic_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/anemic_entity.go -------------------------------------------------------------------------------- /chapter3/auction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/auction.go -------------------------------------------------------------------------------- /chapter3/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/order.go -------------------------------------------------------------------------------- /chapter3/refactored_auction_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/refactored_auction_entity.go -------------------------------------------------------------------------------- /chapter3/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/uuid.go -------------------------------------------------------------------------------- /chapter3/value_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/value_objects.go -------------------------------------------------------------------------------- /chapter3/value_objects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/value_objects_test.go -------------------------------------------------------------------------------- /chapter3/wallet_aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter3/wallet_aggregate.go -------------------------------------------------------------------------------- /chapter4/booking_application_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/booking_application_service.go -------------------------------------------------------------------------------- /chapter4/calendar_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/calendar_factory.go -------------------------------------------------------------------------------- /chapter4/calendar_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/calendar_repository.go -------------------------------------------------------------------------------- /chapter4/car_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/car_factory.go -------------------------------------------------------------------------------- /chapter4/domain_service_after.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/domain_service_after.go -------------------------------------------------------------------------------- /chapter4/domain_service_before.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/domain_service_before.go -------------------------------------------------------------------------------- /chapter4/email_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter4/email_service.go -------------------------------------------------------------------------------- /chapter5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/README.md -------------------------------------------------------------------------------- /chapter5/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/cmd/main.go -------------------------------------------------------------------------------- /chapter5/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/docker-compose.yaml -------------------------------------------------------------------------------- /chapter5/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/go.mod -------------------------------------------------------------------------------- /chapter5/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/go.sum -------------------------------------------------------------------------------- /chapter5/internal/coffeelover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/coffeelover.go -------------------------------------------------------------------------------- /chapter5/internal/loyalty/coffeebux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/loyalty/coffeebux.go -------------------------------------------------------------------------------- /chapter5/internal/payment/means.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/payment/means.go -------------------------------------------------------------------------------- /chapter5/internal/payment/stripe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/payment/stripe.go -------------------------------------------------------------------------------- /chapter5/internal/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/product.go -------------------------------------------------------------------------------- /chapter5/internal/purchase/purchase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/purchase/purchase.go -------------------------------------------------------------------------------- /chapter5/internal/purchase/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/purchase/repository.go -------------------------------------------------------------------------------- /chapter5/internal/store/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/store/repository.go -------------------------------------------------------------------------------- /chapter5/internal/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter5/internal/store/store.go -------------------------------------------------------------------------------- /chapter6/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/docker-compose.yaml -------------------------------------------------------------------------------- /chapter6/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/dockerfile -------------------------------------------------------------------------------- /chapter6/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/go.mod -------------------------------------------------------------------------------- /chapter6/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/go.sum -------------------------------------------------------------------------------- /chapter6/partnerships/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/partnerships/main.go -------------------------------------------------------------------------------- /chapter6/recommendation/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/recommendation/cmd/main.go -------------------------------------------------------------------------------- /chapter6/recommendation/internal/recommendation/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/recommendation/internal/recommendation/adapter.go -------------------------------------------------------------------------------- /chapter6/recommendation/internal/recommendation/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/recommendation/internal/recommendation/handler.go -------------------------------------------------------------------------------- /chapter6/recommendation/internal/recommendation/recommendation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/recommendation/internal/recommendation/recommendation.go -------------------------------------------------------------------------------- /chapter6/recommendation/internal/transport/transporthttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter6/recommendation/internal/transport/transporthttp.go -------------------------------------------------------------------------------- /chapter7/saga.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter7/saga.go -------------------------------------------------------------------------------- /chapter8/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter8/add_test.go -------------------------------------------------------------------------------- /chapter8/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter8/cookies.go -------------------------------------------------------------------------------- /chapter8/cookies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter8/cookies_test.go -------------------------------------------------------------------------------- /chapter8/features/add.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter8/features/add.feature -------------------------------------------------------------------------------- /chapter8/mocks/cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/chapter8/mocks/cookies.go -------------------------------------------------------------------------------- /gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/gen.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/go.sum -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | go test -v -race ./... -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/README.md -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/calculator.go -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/constants.go -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/currency.go -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/money.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/money.go -------------------------------------------------------------------------------- /vendor/github.com/Rhymond/go-money/mutator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/Rhymond/go-money/mutator.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/.rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/.rsync -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/.subrepo: -------------------------------------------------------------------------------- 1 | cucumber/gherkin-go 2 | -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/Makefile -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/README.md -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/astbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/astbuilder.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/default.mk -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/dialect.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/dialects_builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/dialects_builtin.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/dialects_builtin.go.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/dialects_builtin.go.jq -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/gherkin-languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/gherkin-languages.json -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/gherkin.berp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/gherkin.berp -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/gherkin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/gherkin.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/matcher.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/messages.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/parser.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/parser.go.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/parser.go.razor -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/pickles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/pickles.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/remove_empty.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/remove_empty.jq -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/test.feature -------------------------------------------------------------------------------- /vendor/github.com/cucumber/gherkin-go/v13/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/gherkin-go/v13/test.sh -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/.rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/.rsync -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/.subrepo: -------------------------------------------------------------------------------- 1 | cucumber/messages-go 2 | -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/Makefile -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/default.mk -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/id_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/id_generator.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/messages.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/messages.pb.go -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/messages.proto -------------------------------------------------------------------------------- /vendor/github.com/cucumber/messages-go/v12/time_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/cucumber/messages-go/v12/time_conversion.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/context_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/context_get.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/gen.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/gobdd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/gobdd.go -------------------------------------------------------------------------------- /vendor/github.com/go-bdd/gobdd/steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/go-bdd/gobdd/steps.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/generator.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gofrs/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/io/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/io/varint.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/custom_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/custom_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/deprecated.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/duration_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/encode_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/extensions_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_reflect_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_reflect_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/properties_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/skip_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/skip_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/table_marshal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_marshal_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/table_marshal_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/table_merge.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/table_unmarshal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_unmarshal_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/table_unmarshal_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/text_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/wrappers_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gogo/protobuf/proto/wrappers_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/gomock/call.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/callset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/gomock/callset.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/gomock/controller.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/gomock/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/mockgen/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/golang/mock/mockgen/model/model.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/middleware.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/gorilla/mux/test_helpers.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/chunkreader/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/chunkreader/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/chunkreader/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/chunkreader/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/chunkreader/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/chunkreader/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/chunkreader/v2/chunkreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/chunkreader/v2/chunkreader.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | vendor/ 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/auth_scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/auth_scram.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/config.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/defaults_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/defaults_windows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/internal/ctxwatch/context_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/internal/ctxwatch/context_watcher.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/krb5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/krb5.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/pgconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/pgconn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/stmtcache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/stmtcache/lru.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgconn/stmtcache/stmtcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgconn/stmtcache/stmtcache.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgio/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgio/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgio/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgio/write.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgpassfile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgpassfile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgpassfile/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/pgpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgpassfile/pgpass.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_cleartext_password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_cleartext_password.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_gss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_gss.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_gss_continue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_gss_continue.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_md5_password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_md5_password.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_ok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_ok.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_sasl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_sasl.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_sasl_continue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_sasl_continue.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/authentication_sasl_final.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/authentication_sasl_final.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/backend.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/backend_key_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/backend_key_data.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/big_endian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/big_endian.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/bind.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/bind_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/bind_complete.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/cancel_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/cancel_request.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/chunkreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/chunkreader.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/close.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/close_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/close_complete.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/command_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/command_complete.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_both_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_both_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_data.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_done.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_done.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_fail.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_in_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_in_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/copy_out_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/copy_out_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/data_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/data_row.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/describe.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/empty_query_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/empty_query_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/error_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/error_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/execute.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/flush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/flush.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/frontend.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/function_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/function_call.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/function_call_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/function_call_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/gss_enc_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/gss_enc_request.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/gss_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/gss_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/no_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/no_data.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/notice_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/notice_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/notification_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/notification_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/parameter_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/parameter_description.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/parameter_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/parameter_status.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/parse.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/parse_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/parse_complete.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/password_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/password_message.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/pgproto3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/pgproto3.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/portal_suspended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/portal_suspended.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/query.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/ready_for_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/ready_for_query.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/row_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/row_description.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/sasl_initial_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/sasl_initial_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/sasl_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/sasl_response.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/ssl_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/ssl_request.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/startup_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/startup_message.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/sync.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgproto3/v2/terminate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgproto3/v2/terminate.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgservicefile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgservicefile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgservicefile/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/pgservicefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgservicefile/pgservicefile.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/aclitem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/aclitem.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/aclitem_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/aclitem_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/array_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/array_type.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bit.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bool.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bool_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bool_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/box.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bpchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bpchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bpchar_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bpchar_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bytea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bytea.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/bytea_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/bytea_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/cid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cidr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/cidr.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/cidr_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/cidr_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/circle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/circle.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/composite_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/composite_fields.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/composite_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/composite_type.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/convert.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/database_sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/database_sql.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/date.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/date_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/date_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/daterange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/daterange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/enum_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/enum_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/enum_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/enum_type.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/float4.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float4_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/float4_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/float8.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/float8_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/float8_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/generic_binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/generic_binary.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/generic_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/generic_text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/hstore_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/hstore_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/inet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/inet.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/inet_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/inet_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int2.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int2_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int2_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int4.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int4_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4_multirange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int4_multirange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int4range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int4range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int8.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int8_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8_multirange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int8_multirange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/int8range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/int8range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/interval.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/json.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/jsonb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/jsonb.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/jsonb_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/jsonb_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/line.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/lseg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/lseg.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/macaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/macaddr.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/macaddr_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/macaddr_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/multirange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/multirange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/name.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/num_multirange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/num_multirange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/numeric.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numeric_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/numeric_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/numrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/numrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/oid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/oid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/oid_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/oid_value.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/path.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/pgtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/pgtype.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/pguint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/pguint32.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/point.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/polygon.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/qchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/qchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/range.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/record.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/record_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/record_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/text_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/text_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/tid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/time.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamp_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/timestamp_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamptz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/timestamptz.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/timestamptz_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/timestamptz_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tsrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/tsrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tsrange_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/tsrange_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tstzrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/tstzrange.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/tstzrange_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/tstzrange_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_array.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_array.go.erb -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_array_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_array_gen.sh -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_multirange.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_multirange.go.erb -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_multirange_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_multirange_gen.sh -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_range.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_range.go.erb -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/typed_range_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/typed_range_gen.sh -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/unknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/unknown.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/uuid_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/uuid_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/varbit.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/varchar.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/varchar_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/varchar_array.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgtype/xid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgtype/xid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/batch.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/copy_from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/copy_from.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/extended_query_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/extended_query_builder.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/go_stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/go_stdlib.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/internal/sanitize/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/internal/sanitize/sanitize.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/large_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/large_objects.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/logger.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/messages.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v4/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/github.com/jackc/pgx/v4/values.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/internal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact/compact.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/parents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact/parents.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compact/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/compose.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/bidirule/bidirule.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/class.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/nickname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/nickname.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/options.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/profile.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/profiles.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/transformer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/secure/precis/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/composition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/composition.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/readwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/readwriter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/kind_string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Domain-Driven-Design-with-GoLang/HEAD/vendor/modules.txt --------------------------------------------------------------------------------