Files
mayfly-go/server/pkg/utils/bytex/bytex_test.go

12 lines
128 B
Go

package bytex
import (
"fmt"
"testing"
)
func TestParseSize(t *testing.T) {
res, _ := ParseSize("1MB")
fmt.Println(res)
}