Paul Lecuq
36c5d6f2ed
- web service with json support - web page - cron service to update database infos
13 lines
104 B
Go
13 lines
104 B
Go
// +build appengine
|
|
|
|
package log
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
func output() io.Writer {
|
|
return os.Stdout
|
|
}
|