lavender/auth/button.go
2025-03-14 19:24:58 +00:00

13 lines
231 B
Go

package auth
import (
"github.com/1f349/lavender/auth/authContext"
)
type Button interface {
Provider
// RenderButtonTemplate returns a template for the button widget.
RenderButtonTemplate(ctx authContext.TemplateContext)
}