feat: with initial

This commit is contained in:
Kasper Juul Hermansen 2023-04-06 16:52:06 +02:00
commit b98dfdf210
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
5 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.shuttle

3
shuttle.yaml Normal file
View File

@ -0,0 +1,3 @@
plan: false
vars:
name: clank-shuttle-infrastructure-plan

5
shuttletask/go.mod Normal file
View File

@ -0,0 +1,5 @@
module shuttletask
go 1.20
replace github.com/lunarway/shuttle => github.com/kjuulh/shuttle v0.0.0-20230406144450-c44ea3d9ff41

0
shuttletask/go.sum Normal file
View File

9
shuttletask/init.go Normal file
View File

@ -0,0 +1,9 @@
package main
import "context"
func Init(ctx context.Context) error {
println("init")
return nil
}