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