Refactor to improve later; fix comments in single line

This commit is contained in:
2020-11-04 13:14:18 -03:00
parent 71e7c2f72f
commit 77cadb7a0d
7 changed files with 238 additions and 138 deletions
+30
View File
@@ -0,0 +1,30 @@
package goapi
import (
"context"
"time"
)
/*@API*/
type ARequestStruct struct {
A *string
B int64
C time.Time
D *string
}
/*@API*/
type AResponseStruct struct {
A string
B int64
C time.Time
D *string
}
/*
@API
PATH: /someapi
*/
func SomeAPI(ctx context.Context, a *ARequestStruct) (*AResponseStruct, error) {
return nil, nil
}