feat: project scaffold with cobra root and domain types

This commit is contained in:
2026-04-03 11:17:38 +02:00
parent dc20062434
commit 04b62e6d3b
5 changed files with 92 additions and 0 deletions

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "somegit.dev/vikingowl/reddit-reader/cmd"
func main() {
cmd.Execute()
}