First implementation

This commit is contained in:
2020-02-08 22:35:47 +01:00
parent f95f9753e0
commit c3dab05c54
417 changed files with 240337 additions and 0 deletions

11
vendor/github.com/sirupsen/logrus/terminal_check_js.go generated vendored Normal file
View File

@ -0,0 +1,11 @@
// +build js
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}