7 lines
158 B
Go
7 lines
158 B
Go
package connector
|
|
|
|
type Database interface {
|
|
InsertEvents(batch []map[string]string) error
|
|
InsertSessions(batch []map[string]string) error
|
|
Close() error
|
|
}
|