9 lines
72 B
Go
9 lines
72 B
Go
package utils
|
|
|
|
type Driver int
|
|
|
|
const (
|
|
INVALID Driver = iota
|
|
MONGO
|
|
)
|