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

10
SQL/LogTypes.go Normal file
View file

@ -0,0 +1,10 @@
package SQL
type LogType int64
const(
LogInfo LogType = 1
LogWarning = 2
LogError = 3
LogFatal = 4
)