mirror of
https://github.com/Hilbis/Hilbish
synced 2025-07-07 03:22:03 +00:00
7 lines
160 B
Gleam
7 lines
160 B
Gleam
import gleam/option
|
|
import glaml
|
|
|
|
pub type Post {
|
|
Post(name: String, title: String, slug: String, metadata: option.Option(glaml.Document), contents: String)
|
|
}
|