From 2660ff9a70b48f5b10ce7ef98bb4c7aaf7d0acf6 Mon Sep 17 00:00:00 2001 From: naskya Date: Thu, 20 Jun 2024 03:59:12 +0900 Subject: [PATCH] add comment --- src/command/config/schema.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/command/config/schema.rs b/src/command/config/schema.rs index 96c4a12..eaaf780 100644 --- a/src/command/config/schema.rs +++ b/src/command/config/schema.rs @@ -1,3 +1,8 @@ +// This module is only for the schema definition. Always use `Option` 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;