Initial commit

This commit is contained in:
bel
2026-06-27 22:19:46 +00:00
commit 48c3474c15
6 changed files with 81 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package main
import (
"context"
"log"
"gitea.bel.blue/bel/with"
)
func main() {
if err := with.Context(run); err != nil {
panic(err)
}
}
func run(ctx context.Context) error {
log.Fatal("RUN")
return ctx.Err()
}