the project structure modified and new features added

This commit is contained in:
MDK
2023-09-26 14:12:04 +08:00
parent 4fcf28804c
commit 4c63d78e4e
14 changed files with 174 additions and 47 deletions

View File

@@ -26,6 +26,8 @@ func OutputHandler(data interface{}) (string, error) {
}
result[value.target] = temp
output_str, err = utils.ToJSON(result, "")
case SVCBResult:
output_str, err = utils.ToJSON(data, "")
}
return output_str, err
}