fix: issues

This commit is contained in:
Rogee
2024-09-02 23:39:22 +08:00
parent d3806983a4
commit e953d41e7a
10 changed files with 123 additions and 39 deletions

14
main_test.go Normal file
View File

@@ -0,0 +1,14 @@
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))
}