Files
tg_exporter/main_test.go
2024-09-02 23:39:22 +08:00

15 lines
172 B
Go

package main
import (
"mime"
"testing"
)
func Test_Mime(t *testing.T) {
// Test code here
m := "application/rar"
m = "video/mp4"
t.Log(mime.ExtensionsByType(m))
}