Add support for custom footer

This commit is contained in:
Tom Wiesing 2023-01-08 08:13:47 +01:00
parent 9f3e7a7b86
commit a292c25f84
No known key found for this signature in database
7 changed files with 60 additions and 3 deletions

View file

@ -1,6 +1,8 @@
package custom
import "github.com/FAU-CDI/wisski-distillery/internal/dis/component"
import (
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
)
// Custom implements theme and page customization.
type Custom struct {
@ -9,3 +11,7 @@ type Custom struct {
// nothing yet
}
}
var (
_ component.Backupable = (*Custom)(nil)
)