blob: d62c3423a2a1b8b62dee622e520a719945b5f55f [file] [log] [blame]
Joey Armstrong3f0e2422023-07-05 18:25:41 -04001//go:build !profile
Matteo Scandolo8f2b9572020-02-28 15:35:23 -08002// +build !profile
3
4/*
Joey Armstrong11f5a572024-01-12 19:11:32 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo8f2b9572020-02-28 15:35:23 -08006
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10
11 * http://www.apache.org/licenses/LICENSE-2.0
12
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
Joey Armstrong3f0e2422023-07-05 18:25:41 -040020// Package main invokes the application
Matteo Scandolo8f2b9572020-02-28 15:35:23 -080021package main
22
Neha Sharma96b7bf22020-06-15 10:37:32 +000023import "context"
24
Matteo Scandolo8f2b9572020-02-28 15:35:23 -080025func realMain() {
Neha Sharma96b7bf22020-06-15 10:37:32 +000026 logger.Infoln(context.Background(), "NOT PROFILING")
Matteo Scandolo8f2b9572020-02-28 15:35:23 -080027}