Implemented SQL Interface

This commit is contained in:
netbenix 2021-11-22 21:28:18 +01:00
parent c80c353b6f
commit 8a5b82af83
4 changed files with 52 additions and 0 deletions

9
SQL/RemoteStorage.go Normal file
View file

@ -0,0 +1,9 @@
package SQL
type RemoteStorageType int64
const(
REMOTE_AZURE_FILE = 1
REMOTE_AZURE_BLOB = 2
REMOTE_NONE = 3
)