Pslink/src/forms.rs

8 lines
147 B
Rust
Raw Normal View History

2021-02-04 15:07:55 +01:00
use serde::Deserialize;
#[derive(Deserialize)]
pub(crate) struct LinkForm {
pub title: String,
pub target: String,
pub code: String,
}