probo/store/db/db.go

10 lines
160 B
Go
Raw Normal View History

2023-10-18 13:40:21 +02:00
package db
type DBProboCollectorStore struct {
Path string
}
func NewDBProboCollectorStore(path string) (*DBProboCollectorStore, error) {
return nil, nil
}