initial commit

This commit is contained in:
2025-09-24 00:01:06 +02:00
parent 3a93f48397
commit 26bca77a03
12 changed files with 759 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"os"
"github.com/tlinden/ts/cmd"
)
func main() {
os.Exit(cmd.Main(os.Stdout))
}