wireguard-dashboard/utils/flow_calculation_test.go

12 lines
137 B
Go
Raw Normal View History

2024-03-15 15:17:40 +08:00
package utils
import (
"fmt"
"testing"
)
func TestParse(t *testing.T) {
f := FlowCalculation()
fmt.Println(f.Parse(13030000000))
}