This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
golang-rest-example/pkg/api/api.go

12 lines
165 B
Go
Raw Normal View History

2024-02-01 22:09:09 +00:00
package api
import (
"github.com/mentos1386/golang-rest-example/pkg/openapi"
)
type ApiService struct {
groups []*openapi.Group
openapi.UnimplementedHandler
}