Implemented SQL Interface
This commit is contained in:
parent
c80c353b6f
commit
8a5b82af83
4 changed files with 52 additions and 0 deletions
9
SQL/RemoteStorage.go
Normal file
9
SQL/RemoteStorage.go
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
package SQL
|
||||
|
||||
type RemoteStorageType int64
|
||||
|
||||
const(
|
||||
REMOTE_AZURE_FILE = 1
|
||||
REMOTE_AZURE_BLOB = 2
|
||||
REMOTE_NONE = 3
|
||||
)
|
||||
Reference in a new issue