mirror of
https://codeberg.org/scip/ts.git
synced 2025-12-16 20:20:57 +01:00
12 lines
108 B
Go
12 lines
108 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/tlinden/ts/cmd"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cmd.Main(os.Stdout))
|
|
}
|