v1: initialize

- git repo fetcher service, compatible with registry tbm

Signed-off-by: Pakin <pakin.t@forth.co.th>
This commit is contained in:
Pakin 2025-12-16 09:32:37 +07:00
commit 7f8b19353a
9 changed files with 3823 additions and 0 deletions

5
src/gcm.rs Normal file
View file

@ -0,0 +1,5 @@
use std::collections::HashMap;
// Setup readable types
pub type Configure = HashMap<String, String>;
pub type StandardResult = Result<(), Box<dyn std::error::Error>>;