mirror of
https://github.com/fumiama/deepinfra.git
synced 2026-06-06 01:00:34 +08:00
13 lines
134 B
Go
13 lines
134 B
Go
package deepinfra
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
)
|
|
|
|
type Model interface {
|
|
Body() *bytes.Buffer
|
|
Parse(io.Reader) error
|
|
Output() string
|
|
}
|