scannable.go 75 B

12345
  1. package database
  2. type Scannable interface {
  3. Scan(...interface{}) error
  4. }