time_custom_test.go 198 B

123456789101112
  1. package test
  2. import (
  3. "cicv-data-closedloop/common/util"
  4. "fmt"
  5. "testing"
  6. )
  7. func TestTimeCustom(t *testing.T) {
  8. begin := util.TimeCustomChange("2024-07-26-07-25-38", -10)
  9. fmt.Println(begin)
  10. }