18 lines
307 B
Go
18 lines
307 B
Go
|
package grconfig
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
type ConfigerChannelXML struct {
|
||
|
io bytes.Buffer
|
||
|
filename string
|
||
|
adapter string
|
||
|
}
|
||
|
|
||
|
func (c ConfigerChannelXML) Item(item string, t interface{}) (err error) {
|
||
|
panic("implement me")
|
||
|
}
|
||
|
|
||
|
func (c ConfigerChannelXML) String(s string) string {
|
||
|
panic("implement me")
|
||
|
}
|