feat(omo-codex): batch 83 (10 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:14 +09:00
parent 7c9b70fd8e
commit c990dd92c1
10 changed files with 297 additions and 0 deletions
@@ -0,0 +1,22 @@
package main
import (
"context"
"log/slog"
"os"
"os/signal"
"syscall"
"$module/internal/cmd"
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(),
syscall.SIGINT, syscall.SIGTERM)
defer stop()
if err := cmd.Execute(ctx); err != nil {
slog.Error("fatal", slog.Any("err", err))
os.Exit(1)
}
}