diff --git a/pkg/survey.go b/pkg/survey.go deleted file mode 100644 index 49636e1..0000000 --- a/pkg/survey.go +++ /dev/null @@ -1,19 +0,0 @@ -package pkg - -import ( - "context" - - "github.com/LazyBachelor/LazyPM/internal/service" -) - -type SurveyConfig = service.Config - -func Run(ctx context.Context, config SurveyConfig) error { - _, cleanup, err := service.NewServices(ctx, config) - if err != nil { - return err - } - defer cleanup() - - return nil -}