mirror of
https://github.com/Luzifer/cam2mjpeg.git
synced 2024-11-08 21:50:04 +00:00
11 lines
111 B
Go
11 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|