2022-10-20 16:57:41 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"GoWeb/config"
|
|
|
|
"database/sql"
|
2023-02-05 18:46:47 +00:00
|
|
|
"embed"
|
2022-10-20 16:57:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// App contains and supplies available configurations and connections
|
|
|
|
type App struct {
|
2023-04-04 19:37:23 +00:00
|
|
|
Config config.Configuration // Configuration file
|
|
|
|
Db *sql.DB // Database connection
|
|
|
|
Res *embed.FS // Resources from the embedded filesystem
|
|
|
|
ScheduledTasks Scheduled // Scheduled contains a struct of all scheduled functions
|
2022-10-20 16:57:41 +00:00
|
|
|
}
|