cloudnet: initial version

This commit is contained in:
Yousong Zhou
2019-09-12 08:49:03 +00:00
parent 5b8fdcd5af
commit 0b6d33d4fc
43 changed files with 3778 additions and 0 deletions

23
cmd/cloudnet/main.go Normal file
View File

@@ -0,0 +1,23 @@
// Copyright 2019 Yunion
//
// 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
import (
"yunion.io/x/onecloud/pkg/cloudnet/service"
)
func main() {
service.StartService()
}