Files
stream.api/internal/api/plan/interface.go
2026-03-13 02:17:18 +00:00

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)
}