chore: remove semicolon for routes of services in api files (#1195)

This commit is contained in:
Kevin Wan 2021-11-01 20:37:05 +08:00 committed by GitHub
parent 91b10bd3b9
commit b76c7ae55d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@ -15,6 +15,9 @@
**/.DS_Store
**/logs
# for test purpose
adhoc
# gitlab ci
.cache

View File

@ -24,7 +24,7 @@ type Response {
service {{.name}}-api {
@handler {{.handler}}Handler
get /from/:name(Request) returns (Response);
get /from/:name(Request) returns (Response)
}
`