summaryrefslogtreecommitdiff
path: root/internal/run.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-09-21 15:54:11 +0300
committerPaul Buetow <paul@buetow.org>2024-09-21 15:54:11 +0300
commitd38f93fc4fdb54687c425b8866bc99cbd9ad7935 (patch)
treeca5e5b3c582ea373aa6b9193d2e047e2fb06c2f5 /internal/run.go
parentdff4d455e07d639b82a0bed814f41d0656e9b6d0 (diff)
initial revamp
Diffstat (limited to 'internal/run.go')
-rw-r--r--internal/run.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/run.go b/internal/run.go
new file mode 100644
index 0000000..feb69f8
--- /dev/null
+++ b/internal/run.go
@@ -0,0 +1,12 @@
+package internal
+
+import (
+ "context"
+
+ "codeberg.org/snonux/gos/internal/config"
+ "codeberg.org/snonux/gos/internal/queue"
+)
+
+func Run(ctx context.Context, args config.Args) error {
+ return queue.Run(args)
+}