diff options
| author | Paul Buetow <paul@buetow.org> | 2024-09-21 15:54:11 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-09-21 15:54:11 +0300 |
| commit | d38f93fc4fdb54687c425b8866bc99cbd9ad7935 (patch) | |
| tree | ca5e5b3c582ea373aa6b9193d2e047e2fb06c2f5 /internal/run.go | |
| parent | dff4d455e07d639b82a0bed814f41d0656e9b6d0 (diff) | |
initial revamp
Diffstat (limited to 'internal/run.go')
| -rw-r--r-- | internal/run.go | 12 |
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) +} |
