Havoc412 b8d4044b7e refactor(model_res): 删除未使用的接口和方法
- 移除了 DocInterface 接口的未实现方法 GetType
- 删除了 DocResult 和 EncounterResult 类型的 ToString 方法
- 添加了 TODO 注释,标记 base_model.go 文件可能不再需要
2024-11-20 19:50:57 +08:00

15 lines
228 B
Go

package model_res
// TODO DELETE 这个文件或许没什么意义了。
type DocInterface interface {
ToString() string
}
type DocBase struct {
Type string `json:"type"`
}
func (d DocBase) ToString() string {
return ""
}