feat: adicionando o cadastro de produto

This commit is contained in:
2026-07-14 22:11:22 -03:00
parent 70f433ce2b
commit d0b5884958
4 changed files with 79 additions and 13 deletions
+1 -5
View File
@@ -1,16 +1,12 @@
package main
import (
"bufio"
"controle-de-estoque/controller"
"controle-de-estoque/model"
"os"
)
func main() {
estoque := model.NewInventory()
controller := controller.New(estoque)
scanner := bufio.NewScanner(os.Stdin)
controller.CapturarComando(scanner)
controller.Execute()
}