2024-06-07 19:04:04 +08:00

12 lines
142 B
Go

package fcm
import (
"fmt"
"path/filepath"
"testing"
)
func TestFilePath(t *testing.T) {
fmt.Println(filepath.Join("a/b/", "a.json"))
}