This commit is contained in:
2024-05-13 04:07:25 +07:00
commit 00f28e3f7b
6 changed files with 191 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package main
import (
"cake_crm/internal/models/storage/storage_file"
)
func main() {
storage := storage_file.NewStorageFile("resources/db.json")
_ = storage
}