feat: Implement JSON-backed database
This commit is contained in:
parent
44c083a8ef
commit
9933990fd3
12 changed files with 179 additions and 18 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use serde::Serialize;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Default, Serialize)]
|
||||
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||
pub struct Domain {
|
||||
pub name: String,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue