blob: e6dfd949a1d53db8a4b4e7b3ded2b9e4da297bb0 [file] [log] [blame]
/*
* Copyright (c) 2021 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(net_capture_sample, LOG_LEVEL_DBG);
#include <zephyr/kernel.h>
int main(void)
{
LOG_INF("Starting network capture sample");
return 0;
}