pslink 0.3.0

A simple webservice that allows registered users to create short links including qr-codes. Anyone can visit the shortened links. This is an ideal setup for small busines or for publishing papers.
1
2
3
4
5
6
7
use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct LinkForm {
    pub title: String,
    pub target: String,
    pub code: String,
}