First Page

This commit is contained in:
Simon Martens
2025-02-10 20:44:34 +01:00
parent a39ac0d68e
commit deae787e2d
8 changed files with 292 additions and 4 deletions

9
app/pages.go Normal file
View File

@@ -0,0 +1,9 @@
package app
import "github.com/Theodor-Springmann-Stiftung/musenalm/pagemodels"
var pages []pagemodels.IPage
func Register(page pagemodels.IPage) {
pages = append(pages, page)
}