mirror of https://github.com/mindoc-org/mindoc.git
10 lines
134 B
Go
10 lines
134 B
Go
|
package models
|
||
|
|
||
|
// 转换结果
|
||
|
type ConvertBookResult struct {
|
||
|
PDFPath string
|
||
|
EpubPath string
|
||
|
MobiPath string
|
||
|
WordPath string
|
||
|
}
|