refactor: create logx package (#584)
This commit is contained in:
17
core/core.go
Normal file
17
core/core.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package core
|
||||
|
||||
const (
|
||||
// PlatFormIos constant is 1 for iOS
|
||||
PlatFormIos = iota + 1
|
||||
// PlatFormAndroid constant is 2 for Android
|
||||
PlatFormAndroid
|
||||
// PlatFormHuawei constant is 3 for Huawei
|
||||
PlatFormHuawei
|
||||
)
|
||||
|
||||
const (
|
||||
// SucceededPush is log block
|
||||
SucceededPush = "succeeded-push"
|
||||
// FailedPush is log block
|
||||
FailedPush = "failed-push"
|
||||
)
|
||||
Reference in New Issue
Block a user