fix merge

This commit is contained in:
debugtalk
2022-10-17 16:52:25 +08:00
parent 13076dda60
commit 30b153a43c
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package code
import (
"fmt"
"testing"
)
func TestGetErrorCode(t *testing.T) {
err := LoadYAMLError
code := GetErrorCode(err)
fmt.Println(code)
}