Merge branch 'main' into alternate_storage

This commit is contained in:
Thomas Gruber
2021-10-04 15:49:46 +02:00
committed by GitHub
4 changed files with 20 additions and 6 deletions

View File

@@ -13,6 +13,7 @@ type SinkConfig struct {
Password string `json:"password"`
Organization string `json:"organization"`
Type string `json:"type"`
SSL bool `json:"ssl"`
}
type Sink struct {
@@ -22,6 +23,7 @@ type Sink struct {
password string
database string
organization string
ssl bool
}
type SinkFuncs interface {