2020-11-04 16:14:18 +00:00
|
|
|
package goapi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*@API*/
|
|
|
|
type ARequestStruct struct {
|
2020-11-06 23:16:52 +00:00
|
|
|
A *string `json:"a"`
|
2020-11-04 16:14:18 +00:00
|
|
|
B int64
|
|
|
|
C time.Time
|
|
|
|
D *string
|
|
|
|
}
|
|
|
|
|
|
|
|
/*@API*/
|
|
|
|
type AResponseStruct struct {
|
|
|
|
A string
|
|
|
|
B int64
|
|
|
|
C time.Time
|
|
|
|
D *string
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
@API
|
2020-11-06 23:16:52 +00:00
|
|
|
@PATH: /someapi
|
2020-11-04 16:14:18 +00:00
|
|
|
*/
|
|
|
|
func SomeAPI(ctx context.Context, a *ARequestStruct) (*AResponseStruct, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|