1
0
Fork 0

feat: add oapi-codegen to dependencies and use go generate to generate stubs

This commit is contained in:
Vojtěch Mareš 2024-05-04 18:04:32 +02:00
parent 5b204c6a75
commit e805b3f80b
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
5 changed files with 23 additions and 2 deletions

7
tools/tools.go Normal file
View file

@ -0,0 +1,7 @@
//go:build tools
package tools
import (
_ "github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen"
)