apps/shrink/app.go 195 B raw
1
package main
2
3
import (
4
	"embed"
5
	"html/template"
6
	"log/slog"
7
)
8
9
//go:embed templates/*.html static/*
10
var appFS embed.FS
11
12
type App struct {
13
	Log       *slog.Logger
14
	Templates *template.Template
15
}