add comment

This commit is contained in:
naskya 2024-06-20 03:59:12 +09:00
parent ad6b7d0c1b
commit 2660ff9a70
Signed by: naskya
GPG key ID: 712D413B3A9FED5C

View file

@ -1,3 +1,8 @@
// This module is only for the schema definition. Always use `Option<T>` for
// optional values, and do not implement `Default`s or use `#[serde(default)]`s.
// Optional values are handled in the main Firefish program, and this tool
// does not take care of it.
use serde::{Deserialize, Serialize};
use validator::Validate;