Core runtime package for the Gleece tool.
Gleece Runtime provides all the runtime dependencies required for Gleece controllers' implementation and for the routes generated by the Gleece tool.
Get the runtime package:
go get github.com/gopher-fleece/runtime
After installing, import the package in your project as needed. For example:
import "github.com/gopher-fleece/runtime"
// @Tag(MyRoute)
// @Route(/my-base-route)
type MyController struct {
runtime.GleeceController // Embedding the GleeceController
}
For route and specification generation, use the Gleece CLI.
This project is licensed under the MIT License.