From 6cb35a83f751abdd1efb3877f580bad2de9235d7 Mon Sep 17 00:00:00 2001 From: nima Date: Mon, 17 Jun 2024 18:59:06 +0330 Subject: [PATCH] bug fix --- repositories/plan/command_repository.go | 1 - 1 file changed, 1 deletion(-) diff --git a/repositories/plan/command_repository.go b/repositories/plan/command_repository.go index f4f454d..a49cb15 100644 --- a/repositories/plan/command_repository.go +++ b/repositories/plan/command_repository.go @@ -8,7 +8,6 @@ import ( type PlanCommand interface{ CreatePlan(o *models.Plan) error - GetPlan(id uint)(*models.Plan , error) UpdatePlan(id uint , o *models.Plan)(*models.Plan , error) RemovePlan(id uint)error }