├── .gitattributes ├── .gitignore ├── Chapter01 ├── bytestrings │ ├── buffer.go │ ├── buffer_test.go │ ├── bytes.go │ ├── bytes_test.go │ ├── example │ │ └── main.go │ ├── string.go │ └── string_test.go ├── csvformat │ ├── example │ │ └── main.go │ ├── read_csv.go │ ├── read_csv_test.go │ ├── write_csv.go │ └── write_csv_test.go ├── filedirs │ ├── dirs.go │ ├── dirs_test.go │ ├── example │ │ └── main.go │ ├── files.go │ └── files_test.go ├── interfaces │ ├── example │ │ └── main.go │ ├── interfaces.go │ ├── interfaces_test.go │ ├── pipes.go │ └── pipes_test.go ├── tempfiles │ ├── example │ │ └── main.go │ ├── temp_files.go │ └── temp_files_test.go └── templates │ ├── example │ └── main.go │ ├── html_templates.go │ ├── html_templates_test.go │ ├── template_files.go │ ├── template_files_test.go │ ├── templates.go │ └── templates_test.go ├── Chapter02 ├── ansicolor │ ├── color.go │ ├── color_test.go │ └── example │ │ └── main.go ├── cmdargs │ ├── cmdargs.go │ ├── cmdargs_test.go │ └── main.go ├── confformat │ ├── example │ │ └── main.go │ ├── json.go │ ├── json_test.go │ ├── marshal.go │ ├── marshal_test.go │ ├── toml.go │ ├── toml_test.go │ ├── unmarshal.go │ ├── unmarshal_test.go │ ├── yaml.go │ └── yaml_test.go ├── envvar │ ├── config.go │ ├── config_test.go │ └── example │ │ └── main.go ├── flags │ ├── custom.go │ ├── custom_test.go │ ├── flags.go │ ├── flags_test.go │ └── main.go ├── pipes │ ├── pipes.go │ └── pipes_test.go └── signals │ ├── signals │ ├── signals.go │ └── signals_test.go ├── Chapter03 ├── collections │ ├── collections.go │ ├── collections_test.go │ ├── example │ │ └── main.go │ ├── functions.go │ └── functions_test.go ├── currency │ ├── dollars.go │ ├── dollars_test.go │ ├── example │ │ └── main.go │ ├── pennies.go │ └── pennies_test.go ├── dataconv │ ├── dataconv.go │ ├── dataconv_test.go │ ├── example │ │ └── main.go │ ├── interfaces.go │ ├── interfaces_test.go │ ├── strconv.go │ └── strconv_test.go ├── encoding │ ├── base64.go │ ├── base64_test.go │ ├── example │ │ └── main.go │ ├── gob.go │ └── gob_test.go ├── math │ ├── example │ │ └── main.go │ ├── fib.go │ ├── fib_test.go │ ├── math.go │ └── math_test.go ├── nulls │ ├── base.go │ ├── base_test.go │ ├── example │ │ └── main.go │ ├── nullencoding.go │ ├── nullencoding_test.go │ ├── pointer.go │ └── pointer_test.go └── tags │ ├── deserialize.go │ ├── deserialize_test.go │ ├── example │ └── main.go │ ├── serialize.go │ ├── serialize_test.go │ ├── tags.go │ └── tags_test.go ├── Chapter04 ├── basicerrors │ ├── basicerrors.go │ ├── basicerrors_test.go │ ├── custom.go │ ├── custom_test.go │ └── example │ │ └── main.go ├── context │ ├── collect.go │ ├── collect_test.go │ ├── example │ │ └── main.go │ ├── log.go │ └── log_test.go ├── errwrap │ ├── errwrap.go │ ├── errwrap_test.go │ ├── example │ │ └── main.go │ ├── unwrap.go │ └── unwrap_test.go ├── global │ ├── example │ │ └── main.go │ ├── global.go │ ├── global_test.go │ ├── log.go │ └── log_test.go ├── log │ ├── error.go │ ├── error_test.go │ ├── example │ │ └── main.go │ ├── log.go │ └── log_test.go ├── panic │ ├── example │ │ └── main.go │ └── panic.go └── structured │ ├── apex.go │ ├── apex_test.go │ ├── example │ └── main.go │ ├── logrus.go │ └── logrus_test.go ├── Chapter05 ├── database │ ├── config.go │ ├── config_test.go │ ├── create.go │ ├── create_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── query.go │ └── query_test.go ├── dbinterface │ ├── create.go │ ├── create_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── mockgen.sh │ ├── mocks_test.go │ ├── query.go │ ├── query_test.go │ └── transaction.go ├── mongodb │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ └── exec_test.go ├── pools │ ├── example │ │ └── main.go │ ├── pools.go │ ├── pools_test.go │ ├── timeout.go │ └── timeout_test.go ├── redis │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── sort.go │ └── sort_test.go └── storage │ ├── example │ └── main.go │ ├── exec.go │ ├── mongoconfig.go │ ├── mongointerface.go │ └── storage.go ├── Chapter06 ├── async │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ └── exec_test.go ├── client │ ├── client.go │ ├── client_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── store.go │ └── store_test.go ├── decorator │ ├── config.go │ ├── config_test.go │ ├── decorator.go │ ├── decorator_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── middleware.go │ └── middleware_test.go ├── grpc │ ├── client │ │ └── client.go │ ├── greeter │ │ ├── greeter.pb.go │ │ └── greeter.proto │ ├── grpc.sh │ └── server │ │ ├── greeter.go │ │ ├── greeter_test.go │ │ └── server.go ├── oauthcli │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ └── exec_test.go ├── oauthstore │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── filestorage.go │ ├── filestorage_test.go │ ├── storage.go │ ├── storage_test.go │ ├── tokensource.go │ └── tokensource_test.go └── rest │ ├── client.go │ ├── client_test.go │ ├── example │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── transport.go │ └── transport_test.go ├── Chapter07 ├── controllers │ ├── controller.go │ ├── controller_test.go │ ├── example │ │ └── main.go │ ├── get.go │ ├── get_test.go │ ├── post.go │ ├── post_test.go │ ├── storage.go │ └── storage_test.go ├── grpcjson │ ├── grpc.sh │ ├── grpc │ │ └── main.go │ ├── http │ │ ├── get.go │ │ ├── get_test.go │ │ ├── main.go │ │ ├── set.go │ │ └── set_test.go │ ├── internal │ │ ├── keyvalue.go │ │ └── keyvalue_test.go │ └── keyvalue │ │ ├── keyvalue.pb.go │ │ └── keyvalue.proto ├── handlers │ ├── example │ │ └── main.go │ ├── get.go │ ├── get_test.go │ ├── post.go │ └── post_test.go ├── middleware │ ├── context.go │ ├── context_test.go │ ├── example │ │ └── main.go │ ├── handler.go │ ├── handler_test.go │ ├── middleware.go │ └── middleware_test.go ├── negotiate │ ├── example │ │ └── main.go │ ├── handler.go │ ├── handler_test.go │ ├── negotiate.go │ ├── negotiate_test.go │ ├── respond.go │ └── respond_test.go ├── proxy │ ├── example │ │ └── main.go │ ├── process.go │ ├── process_test.go │ ├── proxy.go │ └── proxy_test.go └── validation │ ├── controller.go │ ├── controller_test.go │ ├── example │ └── main.go │ ├── process.go │ ├── process_test.go │ ├── validate.go │ └── validate_test.go ├── Chapter08 ├── bdd │ ├── features │ │ └── handler.feature │ ├── handler.go │ └── handler_test.go ├── coverage │ ├── coverage.go │ └── coverage_test.go ├── fuzz │ ├── dollars.go │ ├── dollars_test.go │ ├── fuzz.go │ ├── fuzz.sh │ └── gencorpus.sh ├── mockgen │ ├── exec.go │ ├── exec_test.go │ ├── interface.go │ ├── interface_test.go │ ├── internal │ │ └── mocks.go │ └── mockgen.sh ├── mocking │ ├── exec.go │ ├── exec_test.go │ ├── mock.go │ ├── mock_test.go │ ├── patch.go │ └── patch_test.go └── tools │ ├── funcs.go │ ├── funcs_test.go │ ├── struct.go │ └── structs_test.go ├── Chapter09 ├── atomic │ ├── example │ │ └── main.go │ ├── map.go │ ├── map_test.go │ ├── ordinal.go │ └── ordinal_test.go ├── channels │ ├── example │ │ └── main.go │ ├── printer.go │ ├── printer_test.go │ ├── sender.go │ └── sender_test.go ├── context │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── values.go │ └── values_test.go ├── pipeline │ ├── encode.go │ ├── example │ │ └── main.go │ ├── pipeline.go │ ├── print.go │ └── worker.go ├── pool │ ├── crypto.go │ ├── crypto_test.go │ ├── example │ │ └── main.go │ ├── work.go │ ├── work_test.go │ ├── worker.go │ └── worker_test.go ├── state │ ├── example │ │ └── main.go │ ├── process.go │ ├── process_test.go │ ├── processor.go │ ├── processor_test.go │ └── state.go └── waitgroup │ ├── example │ └── main.go │ ├── process.go │ ├── process_test.go │ ├── tasks.go │ └── tasks_test.go ├── Chapter10 ├── consensus │ ├── config.go │ ├── config_test.go │ ├── example │ │ └── main.go │ ├── fsm.go │ ├── fsm_test.go │ ├── handler.go │ ├── handler_test.go │ ├── state.go │ └── state_test.go ├── discovery │ ├── client.go │ ├── client_test.go │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── operations.go │ └── operations_test.go ├── docker │ ├── Dockerfile │ ├── example │ │ └── main.go │ ├── setup.sh │ ├── version.go │ └── version_test.go ├── metrics │ ├── example │ │ └── main.go │ ├── handler.go │ ├── handler_test.go │ ├── report.go │ └── report_test.go ├── monitoring │ ├── Dockerfile │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ ├── docker-compose.yml │ ├── main.go │ ├── prometheus.yml │ └── vendor │ │ └── github.com │ │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── prometheus │ │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── go_collector.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── metric.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── promhttp │ │ │ ├── delegator_1_7.go │ │ │ ├── delegator_1_8.go │ │ │ ├── http.go │ │ │ └── instrument_server.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ └── vec.go │ │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ │ └── procfs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── buddyinfo.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── ipvs.go │ │ ├── mdstat.go │ │ ├── mountstats.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_stat.go │ │ ├── stat.go │ │ └── xfs │ │ ├── parse.go │ │ └── xfs.go └── orchestrate │ ├── Dockerfile │ ├── Godeps │ ├── Godeps.json │ └── Readme │ ├── docker-compose.yml │ ├── example │ └── main.go │ ├── mongo.go │ ├── mongo_test.go │ └── vendor │ └── gopkg.in │ └── mgo.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── auth.go │ ├── bson │ ├── LICENSE │ ├── bson.go │ ├── decimal.go │ ├── decode.go │ ├── encode.go │ └── json.go │ ├── bulk.go │ ├── cluster.go │ ├── doc.go │ ├── gridfs.go │ ├── internal │ ├── json │ │ ├── LICENSE │ │ ├── decode.go │ │ ├── encode.go │ │ ├── extension.go │ │ ├── fold.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ ├── sasl │ │ ├── sasl.c │ │ ├── sasl.go │ │ ├── sasl_windows.c │ │ ├── sasl_windows.go │ │ ├── sasl_windows.h │ │ ├── sspi_windows.c │ │ └── sspi_windows.h │ └── scram │ │ └── scram.go │ ├── log.go │ ├── queue.go │ ├── raceoff.go │ ├── raceon.go │ ├── saslimpl.go │ ├── saslstub.go │ ├── server.go │ ├── session.go │ ├── socket.go │ └── stats.go ├── Chapter11 ├── asynckafka │ ├── consumer │ │ └── main.go │ └── producer │ │ ├── genmocks.sh │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── main.go │ │ ├── mocks_test.go │ │ ├── producer.go │ │ └── producer_test.go ├── goflow │ ├── components.go │ ├── components_test.go │ ├── example │ │ └── main.go │ ├── network.go │ └── network_test.go ├── graphql │ ├── cards │ │ ├── card.go │ │ ├── resolve.go │ │ ├── resolve_test.go │ │ ├── schema.go │ │ ├── schema_test.go │ │ ├── type.go │ │ └── type_test.go │ └── example │ │ └── main.go ├── kafkaflow │ ├── components.go │ ├── components_test.go │ ├── consumer │ │ └── main.go │ ├── network.go │ ├── network_test.go │ └── producer │ │ └── main.go ├── reactive │ ├── example │ │ └── main.go │ ├── exec.go │ ├── exec_test.go │ ├── wine.go │ └── wine_test.go └── synckafka │ ├── consumer │ └── main.go │ └── producer │ └── main.go ├── Chapter12 ├── appengine │ ├── app.yaml │ ├── controller.go │ ├── controller_test.go │ ├── main.go │ ├── message.go │ └── message_test.go ├── firebase │ ├── auth.go │ ├── auth_test.go │ ├── client.go │ ├── client_test.go │ └── example │ │ └── main.go ├── lambda │ ├── functions │ │ ├── greeter1 │ │ │ └── main.go │ │ └── greeter2 │ │ │ └── main.go │ └── project.json └── logging │ ├── functions │ └── secret │ │ └── main.go │ └── project.json ├── Chapter13 ├── bench │ ├── atomic.go │ ├── atomic_test.go │ ├── lock.go │ └── lock_test.go ├── fastweb │ ├── handlers.go │ ├── handlers_test.go │ ├── items.go │ ├── items_test.go │ └── main.go ├── pprof │ ├── crypto │ │ ├── handler.go │ │ └── handler_test.go │ └── example │ │ └── main.go ├── tuning │ ├── concat.go │ ├── concat_test.go │ ├── join.go │ └── join_test.go └── vendoring │ ├── Godeps │ ├── Godeps.json │ └── Readme │ ├── handlers │ ├── controller.go │ ├── controller_test.go │ ├── get.go │ ├── get_test.go │ ├── set.go │ └── set_test.go │ ├── main.go │ ├── models │ ├── models.go │ └── models_test.go │ └── vendor │ ├── github.com │ └── sirupsen │ │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_appengine.go │ │ ├── terminal_bsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_solaris.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go │ └── golang.org │ └── x │ └── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── unix │ ├── .gitignore │ ├── README.md │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── constants.go │ ├── dirent.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── env_unset.go │ ├── flock.go │ ├── flock_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── gccgo_linux_sparc64.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.pl │ ├── mksyscall_solaris.pl │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── openbsd_pledge.go │ ├── race.go │ ├── race0.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_amd64_gc.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_sparc64.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_no_getwd.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── syscall_unix_gc.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_solaris_amd64.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_solaris_amd64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ └── ztypes_solaris_amd64.go ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/bytestrings/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/buffer.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/buffer_test.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/bytes.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/bytes_test.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/example/main.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/string.go -------------------------------------------------------------------------------- /Chapter01/bytestrings/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/bytestrings/string_test.go -------------------------------------------------------------------------------- /Chapter01/csvformat/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/csvformat/example/main.go -------------------------------------------------------------------------------- /Chapter01/csvformat/read_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/csvformat/read_csv.go -------------------------------------------------------------------------------- /Chapter01/csvformat/read_csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/csvformat/read_csv_test.go -------------------------------------------------------------------------------- /Chapter01/csvformat/write_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/csvformat/write_csv.go -------------------------------------------------------------------------------- /Chapter01/csvformat/write_csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/csvformat/write_csv_test.go -------------------------------------------------------------------------------- /Chapter01/filedirs/dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/filedirs/dirs.go -------------------------------------------------------------------------------- /Chapter01/filedirs/dirs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/filedirs/dirs_test.go -------------------------------------------------------------------------------- /Chapter01/filedirs/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/filedirs/example/main.go -------------------------------------------------------------------------------- /Chapter01/filedirs/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/filedirs/files.go -------------------------------------------------------------------------------- /Chapter01/filedirs/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/filedirs/files_test.go -------------------------------------------------------------------------------- /Chapter01/interfaces/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/interfaces/example/main.go -------------------------------------------------------------------------------- /Chapter01/interfaces/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/interfaces/interfaces.go -------------------------------------------------------------------------------- /Chapter01/interfaces/interfaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/interfaces/interfaces_test.go -------------------------------------------------------------------------------- /Chapter01/interfaces/pipes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/interfaces/pipes.go -------------------------------------------------------------------------------- /Chapter01/interfaces/pipes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/interfaces/pipes_test.go -------------------------------------------------------------------------------- /Chapter01/tempfiles/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/tempfiles/example/main.go -------------------------------------------------------------------------------- /Chapter01/tempfiles/temp_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/tempfiles/temp_files.go -------------------------------------------------------------------------------- /Chapter01/tempfiles/temp_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/tempfiles/temp_files_test.go -------------------------------------------------------------------------------- /Chapter01/templates/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/example/main.go -------------------------------------------------------------------------------- /Chapter01/templates/html_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/html_templates.go -------------------------------------------------------------------------------- /Chapter01/templates/html_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/html_templates_test.go -------------------------------------------------------------------------------- /Chapter01/templates/template_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/template_files.go -------------------------------------------------------------------------------- /Chapter01/templates/template_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/template_files_test.go -------------------------------------------------------------------------------- /Chapter01/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/templates.go -------------------------------------------------------------------------------- /Chapter01/templates/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter01/templates/templates_test.go -------------------------------------------------------------------------------- /Chapter02/ansicolor/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/ansicolor/color.go -------------------------------------------------------------------------------- /Chapter02/ansicolor/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/ansicolor/color_test.go -------------------------------------------------------------------------------- /Chapter02/ansicolor/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/ansicolor/example/main.go -------------------------------------------------------------------------------- /Chapter02/cmdargs/cmdargs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/cmdargs/cmdargs.go -------------------------------------------------------------------------------- /Chapter02/cmdargs/cmdargs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/cmdargs/cmdargs_test.go -------------------------------------------------------------------------------- /Chapter02/cmdargs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/cmdargs/main.go -------------------------------------------------------------------------------- /Chapter02/confformat/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/example/main.go -------------------------------------------------------------------------------- /Chapter02/confformat/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/json.go -------------------------------------------------------------------------------- /Chapter02/confformat/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/json_test.go -------------------------------------------------------------------------------- /Chapter02/confformat/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/marshal.go -------------------------------------------------------------------------------- /Chapter02/confformat/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/marshal_test.go -------------------------------------------------------------------------------- /Chapter02/confformat/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/toml.go -------------------------------------------------------------------------------- /Chapter02/confformat/toml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/toml_test.go -------------------------------------------------------------------------------- /Chapter02/confformat/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/unmarshal.go -------------------------------------------------------------------------------- /Chapter02/confformat/unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/unmarshal_test.go -------------------------------------------------------------------------------- /Chapter02/confformat/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/yaml.go -------------------------------------------------------------------------------- /Chapter02/confformat/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/confformat/yaml_test.go -------------------------------------------------------------------------------- /Chapter02/envvar/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/envvar/config.go -------------------------------------------------------------------------------- /Chapter02/envvar/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/envvar/config_test.go -------------------------------------------------------------------------------- /Chapter02/envvar/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/envvar/example/main.go -------------------------------------------------------------------------------- /Chapter02/flags/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/flags/custom.go -------------------------------------------------------------------------------- /Chapter02/flags/custom_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /Chapter02/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/flags/flags.go -------------------------------------------------------------------------------- /Chapter02/flags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/flags/flags_test.go -------------------------------------------------------------------------------- /Chapter02/flags/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/flags/main.go -------------------------------------------------------------------------------- /Chapter02/pipes/pipes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/pipes/pipes.go -------------------------------------------------------------------------------- /Chapter02/pipes/pipes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/pipes/pipes_test.go -------------------------------------------------------------------------------- /Chapter02/signals/signals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/signals/signals -------------------------------------------------------------------------------- /Chapter02/signals/signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/signals/signals.go -------------------------------------------------------------------------------- /Chapter02/signals/signals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter02/signals/signals_test.go -------------------------------------------------------------------------------- /Chapter03/collections/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/collections/collections.go -------------------------------------------------------------------------------- /Chapter03/collections/collections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/collections/collections_test.go -------------------------------------------------------------------------------- /Chapter03/collections/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/collections/example/main.go -------------------------------------------------------------------------------- /Chapter03/collections/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/collections/functions.go -------------------------------------------------------------------------------- /Chapter03/collections/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/collections/functions_test.go -------------------------------------------------------------------------------- /Chapter03/currency/dollars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/currency/dollars.go -------------------------------------------------------------------------------- /Chapter03/currency/dollars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/currency/dollars_test.go -------------------------------------------------------------------------------- /Chapter03/currency/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/currency/example/main.go -------------------------------------------------------------------------------- /Chapter03/currency/pennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/currency/pennies.go -------------------------------------------------------------------------------- /Chapter03/currency/pennies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/currency/pennies_test.go -------------------------------------------------------------------------------- /Chapter03/dataconv/dataconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/dataconv.go -------------------------------------------------------------------------------- /Chapter03/dataconv/dataconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/dataconv_test.go -------------------------------------------------------------------------------- /Chapter03/dataconv/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/example/main.go -------------------------------------------------------------------------------- /Chapter03/dataconv/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/interfaces.go -------------------------------------------------------------------------------- /Chapter03/dataconv/interfaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/interfaces_test.go -------------------------------------------------------------------------------- /Chapter03/dataconv/strconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/strconv.go -------------------------------------------------------------------------------- /Chapter03/dataconv/strconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/dataconv/strconv_test.go -------------------------------------------------------------------------------- /Chapter03/encoding/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/encoding/base64.go -------------------------------------------------------------------------------- /Chapter03/encoding/base64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/encoding/base64_test.go -------------------------------------------------------------------------------- /Chapter03/encoding/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/encoding/example/main.go -------------------------------------------------------------------------------- /Chapter03/encoding/gob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/encoding/gob.go -------------------------------------------------------------------------------- /Chapter03/encoding/gob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/encoding/gob_test.go -------------------------------------------------------------------------------- /Chapter03/math/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/math/example/main.go -------------------------------------------------------------------------------- /Chapter03/math/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/math/fib.go -------------------------------------------------------------------------------- /Chapter03/math/fib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/math/fib_test.go -------------------------------------------------------------------------------- /Chapter03/math/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/math/math.go -------------------------------------------------------------------------------- /Chapter03/math/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/math/math_test.go -------------------------------------------------------------------------------- /Chapter03/nulls/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/base.go -------------------------------------------------------------------------------- /Chapter03/nulls/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/base_test.go -------------------------------------------------------------------------------- /Chapter03/nulls/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/example/main.go -------------------------------------------------------------------------------- /Chapter03/nulls/nullencoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/nullencoding.go -------------------------------------------------------------------------------- /Chapter03/nulls/nullencoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/nullencoding_test.go -------------------------------------------------------------------------------- /Chapter03/nulls/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/pointer.go -------------------------------------------------------------------------------- /Chapter03/nulls/pointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/nulls/pointer_test.go -------------------------------------------------------------------------------- /Chapter03/tags/deserialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/deserialize.go -------------------------------------------------------------------------------- /Chapter03/tags/deserialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/deserialize_test.go -------------------------------------------------------------------------------- /Chapter03/tags/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/example/main.go -------------------------------------------------------------------------------- /Chapter03/tags/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/serialize.go -------------------------------------------------------------------------------- /Chapter03/tags/serialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/serialize_test.go -------------------------------------------------------------------------------- /Chapter03/tags/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/tags.go -------------------------------------------------------------------------------- /Chapter03/tags/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter03/tags/tags_test.go -------------------------------------------------------------------------------- /Chapter04/basicerrors/basicerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/basicerrors/basicerrors.go -------------------------------------------------------------------------------- /Chapter04/basicerrors/basicerrors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/basicerrors/basicerrors_test.go -------------------------------------------------------------------------------- /Chapter04/basicerrors/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/basicerrors/custom.go -------------------------------------------------------------------------------- /Chapter04/basicerrors/custom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/basicerrors/custom_test.go -------------------------------------------------------------------------------- /Chapter04/basicerrors/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/basicerrors/example/main.go -------------------------------------------------------------------------------- /Chapter04/context/collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/context/collect.go -------------------------------------------------------------------------------- /Chapter04/context/collect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/context/collect_test.go -------------------------------------------------------------------------------- /Chapter04/context/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/context/example/main.go -------------------------------------------------------------------------------- /Chapter04/context/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/context/log.go -------------------------------------------------------------------------------- /Chapter04/context/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/context/log_test.go -------------------------------------------------------------------------------- /Chapter04/errwrap/errwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/errwrap/errwrap.go -------------------------------------------------------------------------------- /Chapter04/errwrap/errwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/errwrap/errwrap_test.go -------------------------------------------------------------------------------- /Chapter04/errwrap/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/errwrap/example/main.go -------------------------------------------------------------------------------- /Chapter04/errwrap/unwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/errwrap/unwrap.go -------------------------------------------------------------------------------- /Chapter04/errwrap/unwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/errwrap/unwrap_test.go -------------------------------------------------------------------------------- /Chapter04/global/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/global/example/main.go -------------------------------------------------------------------------------- /Chapter04/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/global/global.go -------------------------------------------------------------------------------- /Chapter04/global/global_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/global/global_test.go -------------------------------------------------------------------------------- /Chapter04/global/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/global/log.go -------------------------------------------------------------------------------- /Chapter04/global/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/global/log_test.go -------------------------------------------------------------------------------- /Chapter04/log/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/log/error.go -------------------------------------------------------------------------------- /Chapter04/log/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/log/error_test.go -------------------------------------------------------------------------------- /Chapter04/log/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/log/example/main.go -------------------------------------------------------------------------------- /Chapter04/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/log/log.go -------------------------------------------------------------------------------- /Chapter04/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/log/log_test.go -------------------------------------------------------------------------------- /Chapter04/panic/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/panic/example/main.go -------------------------------------------------------------------------------- /Chapter04/panic/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/panic/panic.go -------------------------------------------------------------------------------- /Chapter04/structured/apex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/structured/apex.go -------------------------------------------------------------------------------- /Chapter04/structured/apex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/structured/apex_test.go -------------------------------------------------------------------------------- /Chapter04/structured/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/structured/example/main.go -------------------------------------------------------------------------------- /Chapter04/structured/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/structured/logrus.go -------------------------------------------------------------------------------- /Chapter04/structured/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter04/structured/logrus_test.go -------------------------------------------------------------------------------- /Chapter05/database/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/config.go -------------------------------------------------------------------------------- /Chapter05/database/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/config_test.go -------------------------------------------------------------------------------- /Chapter05/database/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/create.go -------------------------------------------------------------------------------- /Chapter05/database/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/create_test.go -------------------------------------------------------------------------------- /Chapter05/database/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/example/main.go -------------------------------------------------------------------------------- /Chapter05/database/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/exec.go -------------------------------------------------------------------------------- /Chapter05/database/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/exec_test.go -------------------------------------------------------------------------------- /Chapter05/database/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/query.go -------------------------------------------------------------------------------- /Chapter05/database/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/database/query_test.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/create.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/create_test.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/example/main.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/exec.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/exec_test.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/mockgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/mockgen.sh -------------------------------------------------------------------------------- /Chapter05/dbinterface/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/mocks_test.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/query.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/query_test.go -------------------------------------------------------------------------------- /Chapter05/dbinterface/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/dbinterface/transaction.go -------------------------------------------------------------------------------- /Chapter05/mongodb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/mongodb/config.go -------------------------------------------------------------------------------- /Chapter05/mongodb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/mongodb/config_test.go -------------------------------------------------------------------------------- /Chapter05/mongodb/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/mongodb/example/main.go -------------------------------------------------------------------------------- /Chapter05/mongodb/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/mongodb/exec.go -------------------------------------------------------------------------------- /Chapter05/mongodb/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/mongodb/exec_test.go -------------------------------------------------------------------------------- /Chapter05/pools/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/pools/example/main.go -------------------------------------------------------------------------------- /Chapter05/pools/pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/pools/pools.go -------------------------------------------------------------------------------- /Chapter05/pools/pools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/pools/pools_test.go -------------------------------------------------------------------------------- /Chapter05/pools/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/pools/timeout.go -------------------------------------------------------------------------------- /Chapter05/pools/timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/pools/timeout_test.go -------------------------------------------------------------------------------- /Chapter05/redis/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/config.go -------------------------------------------------------------------------------- /Chapter05/redis/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/config_test.go -------------------------------------------------------------------------------- /Chapter05/redis/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/example/main.go -------------------------------------------------------------------------------- /Chapter05/redis/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/exec.go -------------------------------------------------------------------------------- /Chapter05/redis/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/exec_test.go -------------------------------------------------------------------------------- /Chapter05/redis/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/sort.go -------------------------------------------------------------------------------- /Chapter05/redis/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/redis/sort_test.go -------------------------------------------------------------------------------- /Chapter05/storage/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/storage/example/main.go -------------------------------------------------------------------------------- /Chapter05/storage/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/storage/exec.go -------------------------------------------------------------------------------- /Chapter05/storage/mongoconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/storage/mongoconfig.go -------------------------------------------------------------------------------- /Chapter05/storage/mongointerface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/storage/mongointerface.go -------------------------------------------------------------------------------- /Chapter05/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter05/storage/storage.go -------------------------------------------------------------------------------- /Chapter06/async/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/async/config.go -------------------------------------------------------------------------------- /Chapter06/async/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/async/config_test.go -------------------------------------------------------------------------------- /Chapter06/async/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/async/example/main.go -------------------------------------------------------------------------------- /Chapter06/async/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/async/exec.go -------------------------------------------------------------------------------- /Chapter06/async/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/async/exec_test.go -------------------------------------------------------------------------------- /Chapter06/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/client.go -------------------------------------------------------------------------------- /Chapter06/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/client_test.go -------------------------------------------------------------------------------- /Chapter06/client/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/example/main.go -------------------------------------------------------------------------------- /Chapter06/client/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/exec.go -------------------------------------------------------------------------------- /Chapter06/client/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/exec_test.go -------------------------------------------------------------------------------- /Chapter06/client/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/store.go -------------------------------------------------------------------------------- /Chapter06/client/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/client/store_test.go -------------------------------------------------------------------------------- /Chapter06/decorator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/config.go -------------------------------------------------------------------------------- /Chapter06/decorator/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/config_test.go -------------------------------------------------------------------------------- /Chapter06/decorator/decorator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/decorator.go -------------------------------------------------------------------------------- /Chapter06/decorator/decorator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/decorator_test.go -------------------------------------------------------------------------------- /Chapter06/decorator/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/example/main.go -------------------------------------------------------------------------------- /Chapter06/decorator/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/exec.go -------------------------------------------------------------------------------- /Chapter06/decorator/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/exec_test.go -------------------------------------------------------------------------------- /Chapter06/decorator/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/middleware.go -------------------------------------------------------------------------------- /Chapter06/decorator/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/decorator/middleware_test.go -------------------------------------------------------------------------------- /Chapter06/grpc/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/client/client.go -------------------------------------------------------------------------------- /Chapter06/grpc/greeter/greeter.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/greeter/greeter.pb.go -------------------------------------------------------------------------------- /Chapter06/grpc/greeter/greeter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/greeter/greeter.proto -------------------------------------------------------------------------------- /Chapter06/grpc/grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/grpc.sh -------------------------------------------------------------------------------- /Chapter06/grpc/server/greeter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/server/greeter.go -------------------------------------------------------------------------------- /Chapter06/grpc/server/greeter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/server/greeter_test.go -------------------------------------------------------------------------------- /Chapter06/grpc/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/grpc/server/server.go -------------------------------------------------------------------------------- /Chapter06/oauthcli/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthcli/config.go -------------------------------------------------------------------------------- /Chapter06/oauthcli/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthcli/config_test.go -------------------------------------------------------------------------------- /Chapter06/oauthcli/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthcli/example/main.go -------------------------------------------------------------------------------- /Chapter06/oauthcli/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthcli/exec.go -------------------------------------------------------------------------------- /Chapter06/oauthcli/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthcli/exec_test.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/config.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/config_test.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/example/main.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/filestorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/filestorage.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/filestorage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/filestorage_test.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/storage.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/storage_test.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/tokensource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/tokensource.go -------------------------------------------------------------------------------- /Chapter06/oauthstore/tokensource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/oauthstore/tokensource_test.go -------------------------------------------------------------------------------- /Chapter06/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/client.go -------------------------------------------------------------------------------- /Chapter06/rest/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/client_test.go -------------------------------------------------------------------------------- /Chapter06/rest/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/example/main.go -------------------------------------------------------------------------------- /Chapter06/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/exec.go -------------------------------------------------------------------------------- /Chapter06/rest/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/exec_test.go -------------------------------------------------------------------------------- /Chapter06/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/transport.go -------------------------------------------------------------------------------- /Chapter06/rest/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter06/rest/transport_test.go -------------------------------------------------------------------------------- /Chapter07/controllers/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/controller.go -------------------------------------------------------------------------------- /Chapter07/controllers/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/controller_test.go -------------------------------------------------------------------------------- /Chapter07/controllers/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/example/main.go -------------------------------------------------------------------------------- /Chapter07/controllers/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/get.go -------------------------------------------------------------------------------- /Chapter07/controllers/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/get_test.go -------------------------------------------------------------------------------- /Chapter07/controllers/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/post.go -------------------------------------------------------------------------------- /Chapter07/controllers/post_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/post_test.go -------------------------------------------------------------------------------- /Chapter07/controllers/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/storage.go -------------------------------------------------------------------------------- /Chapter07/controllers/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/controllers/storage_test.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/grpc.sh -------------------------------------------------------------------------------- /Chapter07/grpcjson/grpc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/grpc/main.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/http/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/http/get.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/http/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/http/get_test.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/http/main.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/http/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/http/set.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/http/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/http/set_test.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/internal/keyvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/internal/keyvalue.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/internal/keyvalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/internal/keyvalue_test.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/keyvalue/keyvalue.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/keyvalue/keyvalue.pb.go -------------------------------------------------------------------------------- /Chapter07/grpcjson/keyvalue/keyvalue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/grpcjson/keyvalue/keyvalue.proto -------------------------------------------------------------------------------- /Chapter07/handlers/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/handlers/example/main.go -------------------------------------------------------------------------------- /Chapter07/handlers/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/handlers/get.go -------------------------------------------------------------------------------- /Chapter07/handlers/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/handlers/get_test.go -------------------------------------------------------------------------------- /Chapter07/handlers/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/handlers/post.go -------------------------------------------------------------------------------- /Chapter07/handlers/post_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/handlers/post_test.go -------------------------------------------------------------------------------- /Chapter07/middleware/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/context.go -------------------------------------------------------------------------------- /Chapter07/middleware/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/context_test.go -------------------------------------------------------------------------------- /Chapter07/middleware/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/example/main.go -------------------------------------------------------------------------------- /Chapter07/middleware/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/handler.go -------------------------------------------------------------------------------- /Chapter07/middleware/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/handler_test.go -------------------------------------------------------------------------------- /Chapter07/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/middleware.go -------------------------------------------------------------------------------- /Chapter07/middleware/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/middleware/middleware_test.go -------------------------------------------------------------------------------- /Chapter07/negotiate/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/example/main.go -------------------------------------------------------------------------------- /Chapter07/negotiate/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/handler.go -------------------------------------------------------------------------------- /Chapter07/negotiate/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/handler_test.go -------------------------------------------------------------------------------- /Chapter07/negotiate/negotiate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/negotiate.go -------------------------------------------------------------------------------- /Chapter07/negotiate/negotiate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/negotiate_test.go -------------------------------------------------------------------------------- /Chapter07/negotiate/respond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/respond.go -------------------------------------------------------------------------------- /Chapter07/negotiate/respond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/negotiate/respond_test.go -------------------------------------------------------------------------------- /Chapter07/proxy/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/proxy/example/main.go -------------------------------------------------------------------------------- /Chapter07/proxy/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/proxy/process.go -------------------------------------------------------------------------------- /Chapter07/proxy/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/proxy/process_test.go -------------------------------------------------------------------------------- /Chapter07/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/proxy/proxy.go -------------------------------------------------------------------------------- /Chapter07/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/proxy/proxy_test.go -------------------------------------------------------------------------------- /Chapter07/validation/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/controller.go -------------------------------------------------------------------------------- /Chapter07/validation/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/controller_test.go -------------------------------------------------------------------------------- /Chapter07/validation/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/example/main.go -------------------------------------------------------------------------------- /Chapter07/validation/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/process.go -------------------------------------------------------------------------------- /Chapter07/validation/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/process_test.go -------------------------------------------------------------------------------- /Chapter07/validation/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/validate.go -------------------------------------------------------------------------------- /Chapter07/validation/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter07/validation/validate_test.go -------------------------------------------------------------------------------- /Chapter08/bdd/features/handler.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/bdd/features/handler.feature -------------------------------------------------------------------------------- /Chapter08/bdd/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/bdd/handler.go -------------------------------------------------------------------------------- /Chapter08/bdd/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/bdd/handler_test.go -------------------------------------------------------------------------------- /Chapter08/coverage/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/coverage/coverage.go -------------------------------------------------------------------------------- /Chapter08/coverage/coverage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/coverage/coverage_test.go -------------------------------------------------------------------------------- /Chapter08/fuzz/dollars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/fuzz/dollars.go -------------------------------------------------------------------------------- /Chapter08/fuzz/dollars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/fuzz/dollars_test.go -------------------------------------------------------------------------------- /Chapter08/fuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/fuzz/fuzz.go -------------------------------------------------------------------------------- /Chapter08/fuzz/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/fuzz/fuzz.sh -------------------------------------------------------------------------------- /Chapter08/fuzz/gencorpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/fuzz/gencorpus.sh -------------------------------------------------------------------------------- /Chapter08/mockgen/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/exec.go -------------------------------------------------------------------------------- /Chapter08/mockgen/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/exec_test.go -------------------------------------------------------------------------------- /Chapter08/mockgen/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/interface.go -------------------------------------------------------------------------------- /Chapter08/mockgen/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/interface_test.go -------------------------------------------------------------------------------- /Chapter08/mockgen/internal/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/internal/mocks.go -------------------------------------------------------------------------------- /Chapter08/mockgen/mockgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mockgen/mockgen.sh -------------------------------------------------------------------------------- /Chapter08/mocking/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/exec.go -------------------------------------------------------------------------------- /Chapter08/mocking/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/exec_test.go -------------------------------------------------------------------------------- /Chapter08/mocking/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/mock.go -------------------------------------------------------------------------------- /Chapter08/mocking/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/mock_test.go -------------------------------------------------------------------------------- /Chapter08/mocking/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/patch.go -------------------------------------------------------------------------------- /Chapter08/mocking/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/mocking/patch_test.go -------------------------------------------------------------------------------- /Chapter08/tools/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/tools/funcs.go -------------------------------------------------------------------------------- /Chapter08/tools/funcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/tools/funcs_test.go -------------------------------------------------------------------------------- /Chapter08/tools/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/tools/struct.go -------------------------------------------------------------------------------- /Chapter08/tools/structs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter08/tools/structs_test.go -------------------------------------------------------------------------------- /Chapter09/atomic/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/atomic/example/main.go -------------------------------------------------------------------------------- /Chapter09/atomic/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/atomic/map.go -------------------------------------------------------------------------------- /Chapter09/atomic/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/atomic/map_test.go -------------------------------------------------------------------------------- /Chapter09/atomic/ordinal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/atomic/ordinal.go -------------------------------------------------------------------------------- /Chapter09/atomic/ordinal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/atomic/ordinal_test.go -------------------------------------------------------------------------------- /Chapter09/channels/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/channels/example/main.go -------------------------------------------------------------------------------- /Chapter09/channels/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/channels/printer.go -------------------------------------------------------------------------------- /Chapter09/channels/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/channels/printer_test.go -------------------------------------------------------------------------------- /Chapter09/channels/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/channels/sender.go -------------------------------------------------------------------------------- /Chapter09/channels/sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/channels/sender_test.go -------------------------------------------------------------------------------- /Chapter09/context/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/context/example/main.go -------------------------------------------------------------------------------- /Chapter09/context/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/context/exec.go -------------------------------------------------------------------------------- /Chapter09/context/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/context/exec_test.go -------------------------------------------------------------------------------- /Chapter09/context/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/context/values.go -------------------------------------------------------------------------------- /Chapter09/context/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/context/values_test.go -------------------------------------------------------------------------------- /Chapter09/pipeline/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pipeline/encode.go -------------------------------------------------------------------------------- /Chapter09/pipeline/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pipeline/example/main.go -------------------------------------------------------------------------------- /Chapter09/pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pipeline/pipeline.go -------------------------------------------------------------------------------- /Chapter09/pipeline/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pipeline/print.go -------------------------------------------------------------------------------- /Chapter09/pipeline/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pipeline/worker.go -------------------------------------------------------------------------------- /Chapter09/pool/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/crypto.go -------------------------------------------------------------------------------- /Chapter09/pool/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/crypto_test.go -------------------------------------------------------------------------------- /Chapter09/pool/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/example/main.go -------------------------------------------------------------------------------- /Chapter09/pool/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/work.go -------------------------------------------------------------------------------- /Chapter09/pool/work_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/work_test.go -------------------------------------------------------------------------------- /Chapter09/pool/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/worker.go -------------------------------------------------------------------------------- /Chapter09/pool/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/pool/worker_test.go -------------------------------------------------------------------------------- /Chapter09/state/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/example/main.go -------------------------------------------------------------------------------- /Chapter09/state/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/process.go -------------------------------------------------------------------------------- /Chapter09/state/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/process_test.go -------------------------------------------------------------------------------- /Chapter09/state/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/processor.go -------------------------------------------------------------------------------- /Chapter09/state/processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/processor_test.go -------------------------------------------------------------------------------- /Chapter09/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/state/state.go -------------------------------------------------------------------------------- /Chapter09/waitgroup/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/waitgroup/example/main.go -------------------------------------------------------------------------------- /Chapter09/waitgroup/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/waitgroup/process.go -------------------------------------------------------------------------------- /Chapter09/waitgroup/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/waitgroup/process_test.go -------------------------------------------------------------------------------- /Chapter09/waitgroup/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/waitgroup/tasks.go -------------------------------------------------------------------------------- /Chapter09/waitgroup/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter09/waitgroup/tasks_test.go -------------------------------------------------------------------------------- /Chapter10/consensus/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/config.go -------------------------------------------------------------------------------- /Chapter10/consensus/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/config_test.go -------------------------------------------------------------------------------- /Chapter10/consensus/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/example/main.go -------------------------------------------------------------------------------- /Chapter10/consensus/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/fsm.go -------------------------------------------------------------------------------- /Chapter10/consensus/fsm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/fsm_test.go -------------------------------------------------------------------------------- /Chapter10/consensus/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/handler.go -------------------------------------------------------------------------------- /Chapter10/consensus/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/handler_test.go -------------------------------------------------------------------------------- /Chapter10/consensus/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/state.go -------------------------------------------------------------------------------- /Chapter10/consensus/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/consensus/state_test.go -------------------------------------------------------------------------------- /Chapter10/discovery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/client.go -------------------------------------------------------------------------------- /Chapter10/discovery/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/client_test.go -------------------------------------------------------------------------------- /Chapter10/discovery/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/example/main.go -------------------------------------------------------------------------------- /Chapter10/discovery/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/exec.go -------------------------------------------------------------------------------- /Chapter10/discovery/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/exec_test.go -------------------------------------------------------------------------------- /Chapter10/discovery/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/operations.go -------------------------------------------------------------------------------- /Chapter10/discovery/operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/discovery/operations_test.go -------------------------------------------------------------------------------- /Chapter10/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/docker/Dockerfile -------------------------------------------------------------------------------- /Chapter10/docker/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/docker/example/main.go -------------------------------------------------------------------------------- /Chapter10/docker/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/docker/setup.sh -------------------------------------------------------------------------------- /Chapter10/docker/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/docker/version.go -------------------------------------------------------------------------------- /Chapter10/docker/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/docker/version_test.go -------------------------------------------------------------------------------- /Chapter10/metrics/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/metrics/example/main.go -------------------------------------------------------------------------------- /Chapter10/metrics/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/metrics/handler.go -------------------------------------------------------------------------------- /Chapter10/metrics/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/metrics/handler_test.go -------------------------------------------------------------------------------- /Chapter10/metrics/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/metrics/report.go -------------------------------------------------------------------------------- /Chapter10/metrics/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/metrics/report_test.go -------------------------------------------------------------------------------- /Chapter10/monitoring/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/Dockerfile -------------------------------------------------------------------------------- /Chapter10/monitoring/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/Godeps/Godeps.json -------------------------------------------------------------------------------- /Chapter10/monitoring/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/Godeps/Readme -------------------------------------------------------------------------------- /Chapter10/monitoring/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/docker-compose.yml -------------------------------------------------------------------------------- /Chapter10/monitoring/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/main.go -------------------------------------------------------------------------------- /Chapter10/monitoring/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/prometheus.yml -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/beorn7/perks/quantile/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/beorn7/perks/quantile/stream.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/client_golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/client_golang/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/client_golang/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/client_golang/NOTICE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/client_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/client_model/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/client_model/NOTICE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/decode.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/encode.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/expfmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/expfmt.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/expfmt/fuzz.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/alert.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/fnv.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/labels.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/labelset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/labelset.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/metric.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/model.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/signature.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/silence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/silence.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/time.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/common/model/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/common/model/value.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/.travis.yml -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/buddyinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/buddyinfo.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/mountstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/mountstats.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_io.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_limits.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/proc_stat.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/xfs/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/xfs/parse.go -------------------------------------------------------------------------------- /Chapter10/monitoring/vendor/github.com/prometheus/procfs/xfs/xfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/monitoring/vendor/github.com/prometheus/procfs/xfs/xfs.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/Dockerfile -------------------------------------------------------------------------------- /Chapter10/orchestrate/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/Godeps/Godeps.json -------------------------------------------------------------------------------- /Chapter10/orchestrate/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/Godeps/Readme -------------------------------------------------------------------------------- /Chapter10/orchestrate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/docker-compose.yml -------------------------------------------------------------------------------- /Chapter10/orchestrate/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/example/main.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/mongo.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/mongo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/mongo_test.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/.travis.yml -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/LICENSE -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/Makefile -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/README.md -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/auth.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/LICENSE -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/bson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/bson.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/decimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/decimal.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/decode.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/encode.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bson/json.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bulk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/bulk.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/cluster.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/doc.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/gridfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/gridfs.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/LICENSE -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/decode.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/encode.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/extension.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/fold.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/indent.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/scanner.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/stream.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/json/tags.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/internal/scram/scram.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/log.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/queue.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/raceoff.go: -------------------------------------------------------------------------------- 1 | // +build !race 2 | 3 | package mgo 4 | 5 | const raceDetector = false 6 | -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/raceon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/raceon.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/saslimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/saslimpl.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/saslstub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/saslstub.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/server.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/session.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/socket.go -------------------------------------------------------------------------------- /Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter10/orchestrate/vendor/gopkg.in/mgo.v2/stats.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/consumer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/consumer/main.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/genmocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/genmocks.sh -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/handler.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/handler_test.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/main.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/mocks_test.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/producer.go -------------------------------------------------------------------------------- /Chapter11/asynckafka/producer/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/asynckafka/producer/producer_test.go -------------------------------------------------------------------------------- /Chapter11/goflow/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/goflow/components.go -------------------------------------------------------------------------------- /Chapter11/goflow/components_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/goflow/components_test.go -------------------------------------------------------------------------------- /Chapter11/goflow/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/goflow/example/main.go -------------------------------------------------------------------------------- /Chapter11/goflow/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/goflow/network.go -------------------------------------------------------------------------------- /Chapter11/goflow/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/goflow/network_test.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/card.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/resolve.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/resolve_test.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/schema.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/schema_test.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/type.go -------------------------------------------------------------------------------- /Chapter11/graphql/cards/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/cards/type_test.go -------------------------------------------------------------------------------- /Chapter11/graphql/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/graphql/example/main.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/components.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/components_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/components_test.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/consumer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/consumer/main.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/network.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/network_test.go -------------------------------------------------------------------------------- /Chapter11/kafkaflow/producer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/kafkaflow/producer/main.go -------------------------------------------------------------------------------- /Chapter11/reactive/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/reactive/example/main.go -------------------------------------------------------------------------------- /Chapter11/reactive/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/reactive/exec.go -------------------------------------------------------------------------------- /Chapter11/reactive/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/reactive/exec_test.go -------------------------------------------------------------------------------- /Chapter11/reactive/wine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/reactive/wine.go -------------------------------------------------------------------------------- /Chapter11/reactive/wine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/reactive/wine_test.go -------------------------------------------------------------------------------- /Chapter11/synckafka/consumer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/synckafka/consumer/main.go -------------------------------------------------------------------------------- /Chapter11/synckafka/producer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter11/synckafka/producer/main.go -------------------------------------------------------------------------------- /Chapter12/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/app.yaml -------------------------------------------------------------------------------- /Chapter12/appengine/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/controller.go -------------------------------------------------------------------------------- /Chapter12/appengine/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/controller_test.go -------------------------------------------------------------------------------- /Chapter12/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/main.go -------------------------------------------------------------------------------- /Chapter12/appengine/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/message.go -------------------------------------------------------------------------------- /Chapter12/appengine/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/appengine/message_test.go -------------------------------------------------------------------------------- /Chapter12/firebase/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/firebase/auth.go -------------------------------------------------------------------------------- /Chapter12/firebase/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/firebase/auth_test.go -------------------------------------------------------------------------------- /Chapter12/firebase/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/firebase/client.go -------------------------------------------------------------------------------- /Chapter12/firebase/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/firebase/client_test.go -------------------------------------------------------------------------------- /Chapter12/firebase/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/firebase/example/main.go -------------------------------------------------------------------------------- /Chapter12/lambda/functions/greeter1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/lambda/functions/greeter1/main.go -------------------------------------------------------------------------------- /Chapter12/lambda/functions/greeter2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/lambda/functions/greeter2/main.go -------------------------------------------------------------------------------- /Chapter12/lambda/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/lambda/project.json -------------------------------------------------------------------------------- /Chapter12/logging/functions/secret/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/logging/functions/secret/main.go -------------------------------------------------------------------------------- /Chapter12/logging/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter12/logging/project.json -------------------------------------------------------------------------------- /Chapter13/bench/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/bench/atomic.go -------------------------------------------------------------------------------- /Chapter13/bench/atomic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/bench/atomic_test.go -------------------------------------------------------------------------------- /Chapter13/bench/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/bench/lock.go -------------------------------------------------------------------------------- /Chapter13/bench/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/bench/lock_test.go -------------------------------------------------------------------------------- /Chapter13/fastweb/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/fastweb/handlers.go -------------------------------------------------------------------------------- /Chapter13/fastweb/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/fastweb/handlers_test.go -------------------------------------------------------------------------------- /Chapter13/fastweb/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/fastweb/items.go -------------------------------------------------------------------------------- /Chapter13/fastweb/items_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/fastweb/items_test.go -------------------------------------------------------------------------------- /Chapter13/fastweb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/fastweb/main.go -------------------------------------------------------------------------------- /Chapter13/pprof/crypto/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/pprof/crypto/handler.go -------------------------------------------------------------------------------- /Chapter13/pprof/crypto/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/pprof/crypto/handler_test.go -------------------------------------------------------------------------------- /Chapter13/pprof/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/pprof/example/main.go -------------------------------------------------------------------------------- /Chapter13/tuning/concat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/tuning/concat.go -------------------------------------------------------------------------------- /Chapter13/tuning/concat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/tuning/concat_test.go -------------------------------------------------------------------------------- /Chapter13/tuning/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/tuning/join.go -------------------------------------------------------------------------------- /Chapter13/tuning/join_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/tuning/join_test.go -------------------------------------------------------------------------------- /Chapter13/vendoring/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/Godeps/Godeps.json -------------------------------------------------------------------------------- /Chapter13/vendoring/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/Godeps/Readme -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/controller.go -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/controller_test.go -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/get.go -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/get_test.go -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/set.go -------------------------------------------------------------------------------- /Chapter13/vendoring/handlers/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/handlers/set_test.go -------------------------------------------------------------------------------- /Chapter13/vendoring/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/main.go -------------------------------------------------------------------------------- /Chapter13/vendoring/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/models/models.go -------------------------------------------------------------------------------- /Chapter13/vendoring/models/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/models/models_test.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_appengine.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/Chapter13/vendoring/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Cookbook/HEAD/README.md --------------------------------------------------------------------------------