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/SQLStages.go Normal file
View file

@ -0,0 +1,9 @@
package SQL
type SQLStage int64
const(
SQLStage_Compress = 1
SQLStage_Upload = 2
SQLStage_DeleteTmp = 3
)