Files
wechat_chatter/onebot/utils_test.go
T
2026-06-01 17:11:46 +08:00

13 lines
187 B
Go

package main
import (
"fmt"
"testing"
)
func TestFileToBase64(t *testing.T) {
// 测试文件不存在
f, _ := FileToBase64("/Users/yincong/Desktop/2_base64.txt")
fmt.Println(f)
}