Implemented SQL Interface
This commit is contained in:
parent
c80c353b6f
commit
8a5b82af83
4 changed files with 52 additions and 0 deletions
10
SQL/LogTypes.go
Normal file
10
SQL/LogTypes.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package SQL
|
||||
|
||||
type LogType int64
|
||||
|
||||
const(
|
||||
LogInfo LogType = 1
|
||||
LogWarning = 2
|
||||
LogError = 3
|
||||
LogFatal = 4
|
||||
)
|
||||
Reference in a new issue