Initial commit

This commit is contained in:
2026-01-19 12:12:29 +07:00
commit 2072052437
42 changed files with 5450 additions and 0 deletions

View File

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