Mercurial > hg > Members > anatofuz > lectable
view cmd_pdf.go @ 11:e7d9f63d969c
move repository
author | anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 31 Mar 2020 19:15:18 +0900 |
parents | b6a2d89b06e7 |
children | e00b5301263a |
line wrap: on
line source
package lectable import ( "context" "io" ) type cmdPDF struct{} func (cp *cmdPDF) name() string { return "pdf" } func (cd *cmdPDF) description() string { return "parse from pdf" } func (cd *cmdPDF) run(ctx context.Context, argv []string, outStream, errStream io.Writer) error { return nil }