Files
stream.api/internal/api/plan/interface.go
2026-01-19 12:12:29 +07:00

9 lines
164 B
Go

package plan
import "github.com/gin-gonic/gin"
// PlanHandler defines the interface for plan operations
type PlanHandler interface {
ListPlans(c *gin.Context)
}