6 lines
79 B
Go
6 lines
79 B
Go
|
package query
|
||
|
|
||
|
type IQueryResult interface {
|
||
|
Message() ( string, error )
|
||
|
}
|