1 /*
2  * Copyright (c) 2017 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <sys/printk.h>
8 #include <zephyr.h>
9 
10 #include <shell/shell.h>
11 
main(void)12 void main(void)
13 {
14 	printk("Press the <Tab> button for supported commands.\n");
15 	printk("Before any Mesh commands you must run \"mesh init\"\n");
16 }
17