Add Test Impl for listing Links

This commit is contained in:
Samuel Lorch 2024-01-14 23:11:26 +01:00
parent 0f9cc36dfc
commit 5d952b736b
2 changed files with 16 additions and 2 deletions

View file

@ -43,3 +43,8 @@ pub struct StaticRoute {
pub metric: u64,
pub comment: String,
}
#[derive(Serialize, Deserialize, Clone, Validate, Debug)]
pub struct Link {
pub name: String,
}