refactor: remove makefile

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ 2020-06-29 16:44:33 +08:00
parent ca5321440a
commit 74f6d0ad4a
2 changed files with 0 additions and 33 deletions

View File

@ -1,21 +0,0 @@
//package utils
//
//var (
// browserList = map[string]struct {
// Dir string
// Command string
// }{
// "chrome": {
// chromeDir,
// Chrome,
// },
// "edge": {
// edgeDir,
// Edge,
// },
// }
//)

View File

@ -1,12 +0,0 @@
package utils
import (
"fmt"
"testing"
)
func TestTimeEpochFormat(t *testing.T) {
dateAdded := int64(13220074277028707)
s := TimeEpochFormat(dateAdded)
fmt.Println(s)
}