2024-06-13 20:56:03 +00:00
|
|
|
package main
|
|
|
|
|
2024-06-14 17:04:23 +00:00
|
|
|
import (
|
|
|
|
"skunkyart/app"
|
|
|
|
|
|
|
|
"git.macaw.me/skunky/devianter"
|
|
|
|
)
|
2024-06-13 20:56:03 +00:00
|
|
|
|
|
|
|
func main() {
|
2024-07-05 21:46:25 +00:00
|
|
|
app.ExecuteConfig()
|
2024-07-06 17:06:04 +00:00
|
|
|
app.CopyTemplatesToMemory()
|
2024-06-27 11:51:46 +00:00
|
|
|
err := devianter.UpdateCSRF()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
}
|
2024-06-14 17:04:23 +00:00
|
|
|
|
2024-06-13 20:56:03 +00:00
|
|
|
app.Router()
|
|
|
|
}
|