Rename database package to sqlite

This commit is contained in:
TwinProduction
2021-07-18 16:13:05 -04:00
committed by Chris
parent aac72e3741
commit c700154f5e
7 changed files with 48 additions and 48 deletions

View File

@ -2,9 +2,9 @@ package store
import (
"github.com/TwinProduction/gatus/core"
"github.com/TwinProduction/gatus/storage/store/database"
"github.com/TwinProduction/gatus/storage/store/memory"
"github.com/TwinProduction/gatus/storage/store/paging"
"github.com/TwinProduction/gatus/storage/store/sqlite"
)
// Store is the interface that each stores should implement
@ -43,5 +43,5 @@ type Store interface {
var (
// Validate interface implementation on compile
_ Store = (*memory.Store)(nil)
_ Store = (*database.Store)(nil)
_ Store = (*sqlite.Store)(nil)
)