Added file management.

This commit is contained in:
mikestefanello 2025-02-16 14:23:52 -05:00
parent b808500a23
commit ca1de66033
12 changed files with 201 additions and 21 deletions

View file

@ -57,6 +57,7 @@ type (
App AppConfig
Cache CacheConfig
Database DatabaseConfig
Files FilesConfig
Tasks TasksConfig
Mail MailConfig
}
@ -105,6 +106,11 @@ type (
TestConnection string
}
// FilesConfig stores the file system configuration
FilesConfig struct {
Directory string
}
// TasksConfig stores the tasks configuration
TasksConfig struct {
Goroutines int