Use Go modules now.

This commit is contained in:
k1574 2021-06-02 04:05:18 +05:00
parent 2756dab0b0
commit 07aae4b10b
2 changed files with 6 additions and 2 deletions

4
go.mod Normal file
View file

@ -0,0 +1,4 @@
module utf8tmpl
go 1.16

View file

@ -3,8 +3,8 @@ package main
import( import(
"fmt" "fmt"
"os" "os"
"github.com/k1574/utf8tmpl/tmpl" "utf8tmpl/tmpl"
"github.com/k1574/utf8tmpl/pin" "utf8tmpl/pin"
) )
func main() { func main() {