chore: update "DO NOT EDIT" format (#2559)

* chore: update "DO NOT EDIT" format

* Update readme.md

* Update head.go
This commit is contained in:
foliet
2022-10-27 19:41:24 +08:00
committed by GitHub
parent 9504d30049
commit 07128213d6
3 changed files with 3 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ func NewUserModel(url, db, collection string, c cache.CacheConf) UserModel {
#### usermodelgen.go
```go
// Code generated by goctl. DO NOT EDIT!
// Code generated by goctl. DO NOT EDIT.
package model
import (

View File

@@ -1,4 +1,4 @@
// Code generated by goctl. DO NOT EDIT!
// Code generated by goctl. DO NOT EDIT.
package model
import (

View File

@@ -2,7 +2,7 @@ package util
const (
// DoNotEditHead added to the beginning of a file to prompt the user not to edit
DoNotEditHead = "// Code generated by goctl. DO NOT EDIT!"
DoNotEditHead = "// Code generated by goctl. DO NOT EDIT."
headTemplate = DoNotEditHead + `
// Source: {{.source}}`