Quellcode durchsuchen

调整状态码

wangbo vor 1 Woche
Ursprung
Commit
3d3803648b
5 geänderte Dateien mit 33 neuen und 2 gelöschten Zeilen
  1. 8 0
      .idea/.gitignore
  2. 9 0
      .idea/cg_sdk.iml
  3. 8 0
      .idea/modules.xml
  4. 6 0
      .idea/vcs.xml
  5. 2 2
      code.go

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml

+ 9 - 0
.idea/cg_sdk.iml

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+  <component name="Go" enabled="true" />
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/cg_sdk.iml" filepath="$PROJECT_DIR$/.idea/cg_sdk.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="" vcs="Git" />
+  </component>
+</project>

+ 2 - 2
code.go

@@ -1,8 +1,8 @@
 package cg_sdk
 
 const (
-	codeStatusFree = iota + uint8(1)
-	codeStatusUsing
+	codeStatusUsing = iota + uint8(1)
+	codeStatusFree
 )
 
 type Code struct {