forked from ebhomengo/niki
6 lines
67 B
Go
6 lines
67 B
Go
|
package mysql
|
||
|
|
||
|
type Scanner interface {
|
||
|
Scan(dest ...any) error
|
||
|
}
|