14 lines
173 B
Go
14 lines
173 B
Go
|
package model_res
|
||
|
|
||
|
type DocInterface interface {
|
||
|
ToString() string
|
||
|
}
|
||
|
|
||
|
type DocBase struct {
|
||
|
Type string `json:"type"`
|
||
|
}
|
||
|
|
||
|
func (d DocBase) ToString() string {
|
||
|
return ""
|
||
|
}
|