diff options
| author | Shulhan <ms@kilabit.info> | 2021-10-17 02:33:09 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-10-17 02:33:09 +0700 |
| commit | d1bb05be9538a793fca37d3dcdcb8f637134398e (patch) | |
| tree | 6e57b4f02a11fa0aa82b246b974e2181e8083883 | |
| parent | ed3d14a77a3c2736c7b563bd52473c43a62f813b (diff) | |
| download | gorankusu-d1bb05be9538a793fca37d3dcdcb8f637134398e.tar.xz | |
all: move the main program for example to internal/cmd/trunks-example
The "cmd" directory on module should be reserved for installable
program that can be executed outside of this repository.
The trunks-example is development server should be run on root of this
repository only, not installable to $GOBIN.
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | example/example.go | 8 | ||||
| -rw-r--r-- | internal/cmd/trunks-example/main.go (renamed from cmd/trunks-example/main.go) | 0 |
3 files changed, 7 insertions, 3 deletions
@@ -8,7 +8,7 @@ all: embed go test -v -race ./... run: - go run ./cmd/trunks-example + go run ./internal/cmd/trunks-example embed: tsc go run ./internal/memfs-embed diff --git a/example/example.go b/example/example.go index 963f7e0..56f7d7c 100644 --- a/example/example.go +++ b/example/example.go @@ -1,6 +1,10 @@ // -// Package example provide an example how to use the Trunks library from setup -// to creating targets. +// Package example provide an example how to use the Trunks library from +// setting it up to creating targets. +// +// To run the example, execute +// +// $ go run ./internal/cmd/trunks-example // package example diff --git a/cmd/trunks-example/main.go b/internal/cmd/trunks-example/main.go index 9c340e5..9c340e5 100644 --- a/cmd/trunks-example/main.go +++ b/internal/cmd/trunks-example/main.go |
