initial commit of slink

This commit is contained in:
2021-02-04 15:07:55 +01:00
commit d64f205162
23 changed files with 3989 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
use serde::Deserialize;
#[derive(Deserialize)]
pub(crate) struct LinkForm {
pub title: String,
pub target: String,
pub code: String,
}