frm/types.go

18 lines
319 B
Go
Raw Normal View History

2024-11-05 16:18:04 +00:00
package frm
import (
"github.com/acaloiaro/frm/internal"
)
2024-12-19 21:18:15 +00:00
// Form is a published form
2024-11-05 16:18:04 +00:00
type Form internal.Form
2025-01-18 16:09:16 +00:00
// Forms is a slice of forms
type Forms []internal.Form
2024-11-05 16:18:04 +00:00
2025-01-23 14:31:12 +00:00
// FormSubmission is a form submission
type FormSubmission internal.FormSubmission
2025-01-18 16:09:16 +00:00
// ShortCode is a short code
type ShortCode internal.ShortCode