This commit is contained in:
JunDao
2019-05-01 15:22:42 +08:00
parent 2b58eb07b5
commit 0d436609ce
21 changed files with 91491 additions and 0 deletions

9
data/items_test.go Normal file
View File

@ -0,0 +1,9 @@
package data
import "testing"
func TestItemsString(t *testing.T) {
for i := 0; i < 789+1; i++ {
t.Log(Solt{ID: i, Count: byte(i%64 + 1)})
}
}