go__sqs_demo/front/handlers.go

23 lines
342 B
Go

package front
import (
"embed"
)
//go:embed assets
var Assets embed.FS
//go:embed templates/confirm.gohtml
var Confirm string
//go:embed templates/flashes.gohtml
var Flashes string
//go:embed templates/home.gohtml
var Home string
//go:embed templates/queue.gohtml
var QueueGet string
//go:embed templates/500.gohtml
var Err500 string