mirror of
https://codeberg.org/scip/ts.git
synced 2025-12-17 04:30:56 +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))
|
|
}
|