12345678910111213141516171819202122232425262728 |
- package main
- import (
- "log"
- "os"
- "github.com/docker/libnetwork/cmd/networkdb-test/dbclient"
- "github.com/docker/libnetwork/cmd/networkdb-test/dbserver"
- "github.com/sirupsen/logrus"
- )
- func main() {
- formatter := &logrus.TextFormatter{
- FullTimestamp: true,
- }
- logrus.SetFormatter(formatter)
- logrus.Infof("Starting the image with these args: %v", os.Args)
- if len(os.Args) < 1 {
- log.Fatal("You need at least 1 argument [client/server]")
- }
- switch os.Args[1] {
- case "server":
- dbserver.Server(os.Args[2:])
- case "client":
- dbclient.Client(os.Args[2:])
- }
- }
|