blob: e56663277e23311d2223977a421e0ff45dd28ccc [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Package main implements the nem-ondemand-proxy
package main
import (
"github.com/opencord/nem-ondemand-proxy/internal/pkg/proxy"
"log"
)
func main() {
log.Printf("Starting nem-ondemand-proxy")
proxy.ParseCommandLine()
proxy.ProcessGlobalOptions()
proxy.ShowGlobalOptions()
handler := proxy.NewOnDemandHandler()
server := proxy.NewOnDemandServer(handler)
if err := server.StartServing(); err != nil {
log.Fatalf("failed to serve: %v", err)
}
}