summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 12:34:57 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 12:34:57 +0200
commit76d88856aa4ef78342d4ffe6bb533c29fe342fc0 (patch)
tree785afcfcd045c4d252c9bad045f768214265e58c /cmd
parent71da73c4a8c01595118c196db5b8a37611f672ec (diff)
downloadlectio-76d88856aa4ef78342d4ffe6bb533c29fe342fc0.tar.gz
lectio-76d88856aa4ef78342d4ffe6bb533c29fe342fc0.zip
scaffold: module, mains, Makefile, embedded corpora
Diffstat (limited to 'cmd')
-rw-r--r--cmd/lectio-ui/main.go5
-rw-r--r--cmd/lectio/main.go11
2 files changed, 16 insertions, 0 deletions
diff --git a/cmd/lectio-ui/main.go b/cmd/lectio-ui/main.go
new file mode 100644
index 0000000..eced3b5
--- /dev/null
+++ b/cmd/lectio-ui/main.go
@@ -0,0 +1,5 @@
+package main
+
+import "fmt"
+
+func main() { fmt.Println("lectio-ui: not yet implemented") }
diff --git a/cmd/lectio/main.go b/cmd/lectio/main.go
new file mode 100644
index 0000000..3b5aac8
--- /dev/null
+++ b/cmd/lectio/main.go
@@ -0,0 +1,11 @@
+package main
+
+import (
+ "os"
+
+ "github.com/lukaszkasprzak/lectio/internal/cli"
+)
+
+func main() {
+ os.Exit(cli.Run(os.Args[1:], os.Stdin, os.Stdout, os.Stderr))
+}