2 Commits

2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
"npm": false,
"hooks": {
"after:bump": "echo Version bumped to ${version}",
"after:release": "echo SUCCESSFULLY RELEASED: v${version} > test.log"
"after:release": "node ./scripts/create-gitea-release.js ${version}"
},
"github": false,
@@ -28,6 +28,7 @@
}
},
"files": [
"package.json"
"package.json",
"CHANGELOG.md"
]
}

View File

@@ -8,7 +8,7 @@ import (
)
func main() {
fmt.Println("Welcome to lst backend where all the fun happens.")
fmt.Println("Welcome to lst backend where all the fun happens")
r := gin.Default()
r.GET("/", errorLoc)