moved stuff around

This commit is contained in:
2024-05-18 04:10:28 +03:00
parent 7d3051d4cb
commit 9834ab88c8
13 changed files with 351 additions and 61 deletions

14
models/config.go Normal file
View File

@@ -0,0 +1,14 @@
package models
type EmailConfig struct {
FromEmail string
Username string
Password string
Server string
}
type GlobalConfig struct {
Email EmailConfig
Key string
Algorithm string
}

View File

@@ -25,6 +25,7 @@ type FileBrowserInfo struct {
Id string
OwnerId string
ConnectedTo ServerInfo
Url string
}
type ServerData struct {