| 15 | } |
| 16 | |
| 17 | type Document struct { |
| 18 | // 文档的唯一 hash,用来分享 |
| 19 | Hash string |
| 20 | |
| 21 | mu sync.RWMutex |
| 22 | Content string |
| 23 | Clients map[chan string]struct{} |
| 24 | } |
| 25 | |
| 26 | func NewMarkdown() *Markdown { |
| 27 | return &Markdown{ |
nothing calls this directly
no outgoing calls
no test coverage detected