lavender/auth/auth-buttons.go

13 lines
231 B
Go
Raw Normal View History

2025-01-19 12:04:25 +00:00
package auth
import (
2025-01-25 19:49:57 +00:00
"github.com/1f349/lavender/auth/authContext"
2025-01-19 12:04:25 +00:00
)
type Button interface {
2025-01-25 19:49:57 +00:00
Provider
2025-01-19 12:04:25 +00:00
// RenderButtonTemplate returns a template for the button widget.
2025-01-25 19:49:57 +00:00
RenderButtonTemplate(ctx authContext.TemplateContext)
2025-01-19 12:04:25 +00:00
}