wechaty/go-wechaty

View on GitHub
wechaty-puppet/filebox/file_box_unknown.go

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package filebox

import "io"

var _ fileImplInterface = &fileBoxUnknown{}

type fileBoxUnknown struct {
}

func (f fileBoxUnknown) toJSONMap() (map[string]interface{}, error) {
    //TODO implement me
    panic("implement me")
}

func (f fileBoxUnknown) toReader() (io.Reader, error) {
    //TODO implement me
    panic("implement me")
}