mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-05 03:42:08 +08:00
12 lines
142 B
Go
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"))
|
|
}
|