From e694fce7c79187309d26e919570d2cb7905e6019 Mon Sep 17 00:00:00 2001 From: gogacoder Date: Sat, 8 Mar 2025 20:55:30 +0700 Subject: [PATCH] feat: delete deprecated input --- cmd/input.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cmd/input.go b/cmd/input.go index 62e6831..dc580c2 100644 --- a/cmd/input.go +++ b/cmd/input.go @@ -1,7 +1,6 @@ package cmd import ( - "fmt" "log" "nto_cli/utils" "os" @@ -9,13 +8,6 @@ import ( "github.com/rivo/tview" ) -func Input() (string, string) { - fmt.Print("struct name, path to file (including struct): ") - var structName, path string - fmt.Scan(&structName, &path) - return structName, path -} - func SelectionInput() ([]string, string) { if len(os.Args) == 1 { log.Fatalf("Please provide path to models.go")