mirror of
https://github.com/1f349/lavender.git
synced 2025-02-23 14:15:08 +00:00
13 lines
231 B
Go
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)
|
|
}
|