This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"log"
|
|
)
|
|
|
|
var (
|
|
timestamps bool
|
|
)
|
|
|
|
func main() {
|
|
flag.BoolVar(×tamps, "timestamps", true, "print timestamps in output")
|
|
flag.Parse()
|
|
|
|
if !timestamps {
|
|
log.SetFlags(0)
|
|
}
|
|
log.Println("Startup rezenssion monolith")
|
|
}
|