12 lines
203 B
Go
12 lines
203 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package usage
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// UsageHandler defines the interface for usage operations
|
|
type UsageHandler interface {
|
|
GetUsage(c *gin.Context)
|
|
}
|