view cmd_pdf.go @ 10:b6a2d89b06e7

add cmd_pdf
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Mar 2020 16:32:53 +0900
parents
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
}