mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-04 21:43:52 +00:00
This commit is contained in:
parent
ac268a16c8
commit
2c2815ab0b
22 changed files with 2122 additions and 2 deletions
14
go/app/util/dbutil/format.go
Normal file
14
go/app/util/dbutil/format.go
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package dbutil
|
||||
|
||||
import "errors"
|
||||
|
||||
type DatabaseFormat uint8
|
||||
|
||||
const (
|
||||
DatabaseParquet DatabaseFormat = iota
|
||||
DatabaseJSON
|
||||
)
|
||||
|
||||
var (
|
||||
ErrUnknownDatabaseFormat = errors.New("dbutil: unknown database format")
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue