start translate

This commit is contained in:
Erik Winter 2024-06-11 07:06:29 +02:00
parent 0066a8683f
commit ca4411b3a0
2 changed files with 19 additions and 0 deletions

3
ollama-translate/go.mod Normal file
View File

@ -0,0 +1,3 @@
module codeberg.org/ewintr/scripts/ollama-translate
go 1.21.5

16
ollama-translate/main.go Normal file
View File

@ -0,0 +1,16 @@
package main
import (
"flag"
"fmt"
)
var (
inputFile = flag.String("i", "", "input file")
)
func main() {
flag.Parse()
fmt.Println("Hello World")
}