mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-16 21:52:42 +02:00
14 lines
254 B
Go
14 lines
254 B
Go
package folders
|
|
|
|
import (
|
|
"github.com/ManyakRus/crud_generator/internal/config"
|
|
ConfigMain "github.com/ManyakRus/starter/config"
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateAllFolders(t *testing.T) {
|
|
ConfigMain.LoadEnv()
|
|
config.FillSettings()
|
|
CreateAllFolders()
|
|
}
|