summaryrefslogtreecommitdiffstats
path: root/store/sql_system_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_system_store.go')
-rw-r--r--store/sql_system_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_system_store.go b/store/sql_system_store.go
index d9a64790e..ecb7f8469 100644
--- a/store/sql_system_store.go
+++ b/store/sql_system_store.go
@@ -8,10 +8,10 @@ import (
)
type SqlSystemStore struct {
- *SqlStore
+ SqlStore
}
-func NewSqlSystemStore(sqlStore *SqlStore) SystemStore {
+func NewSqlSystemStore(sqlStore SqlStore) SystemStore {
s := &SqlSystemStore{sqlStore}
for _, db := range sqlStore.GetAllConns() {