From b98dfdf21039d295f4f17a24bdf0e8d97f977aea Mon Sep 17 00:00:00 2001 From: kjuulh Date: Thu, 6 Apr 2023 16:52:06 +0200 Subject: [PATCH] feat: with initial --- .gitignore | 1 + shuttle.yaml | 3 +++ shuttletask/go.mod | 5 +++++ shuttletask/go.sum | 0 shuttletask/init.go | 9 +++++++++ 5 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 shuttle.yaml create mode 100644 shuttletask/go.mod create mode 100644 shuttletask/go.sum create mode 100644 shuttletask/init.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b98bff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.shuttle diff --git a/shuttle.yaml b/shuttle.yaml new file mode 100644 index 0000000..a87719b --- /dev/null +++ b/shuttle.yaml @@ -0,0 +1,3 @@ +plan: false +vars: + name: clank-shuttle-infrastructure-plan diff --git a/shuttletask/go.mod b/shuttletask/go.mod new file mode 100644 index 0000000..e3e8df9 --- /dev/null +++ b/shuttletask/go.mod @@ -0,0 +1,5 @@ +module shuttletask + +go 1.20 + +replace github.com/lunarway/shuttle => github.com/kjuulh/shuttle v0.0.0-20230406144450-c44ea3d9ff41 diff --git a/shuttletask/go.sum b/shuttletask/go.sum new file mode 100644 index 0000000..e69de29 diff --git a/shuttletask/init.go b/shuttletask/init.go new file mode 100644 index 0000000..700c3ac --- /dev/null +++ b/shuttletask/init.go @@ -0,0 +1,9 @@ +package main + +import "context" + +func Init(ctx context.Context) error { + println("init") + + return nil +}