Archived
1
0
This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
Pslink/src/forms.rs
2021-02-04 15:07:55 +01:00

8 lines
147 B
Rust

use serde::Deserialize;
#[derive(Deserialize)]
pub(crate) struct LinkForm {
pub title: String,
pub target: String,
pub code: String,
}