Skip to content

Commit

Permalink
Add polad cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
watal committed Mar 31, 2022
1 parent 6a8801b commit a44617f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cmd/polad/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright (c) 2022 NTT Communications Corporation
//
// This software is released under the MIT License.
// see https://github.com/nttcom/pola/blob/main/LICENSE

package main

import (
"log"

"github.com/nttcom/pola/pkg/server"
)

func main() {
if err := server.NewPce(); err != nil {
log.Fatal(err)
}
}

0 comments on commit a44617f

Please sign in to comment.