Move module to git.codemonkeysoftware.net

This commit is contained in:
2023-12-20 15:35:09 -07:00
parent 38aea4a033
commit cbf7aa6a9d
16 changed files with 78 additions and 71 deletions

View File

@ -141,12 +141,12 @@ func (spec ElemSpec) Generate() Def {
func Render(defs []Def, pkgName string) ([]byte, error) {
buf := new(bytes.Buffer)
buf.WriteString(`// GENERATED BY gitlab.codemonkeysoftware.net/b/hatmill/internal/codegen
buf.WriteString(`// GENERATED BY git.codemonkeysoftware.net/b/hatmill/internal/codegen
// DO NOT EDIT!
`)
fmt.Fprintln(buf, "package ", pkgName)
buf.WriteString(`import "gitlab.codemonkeysoftware.net/b/hatmill"
buf.WriteString(`import "git.codemonkeysoftware.net/b/hatmill"
`)
for _, def := range defs {