misc: fix the license header
[vpp.git] / src / plugins / vhost / plugin.c
1 /* SPDX-License-Identifier: Apache-2.0
2  * Copyright (c) 2022 Cisco Systems, Inc.
3  */
4
5 #include <vlib/vlib.h>
6 #include <vnet/plugin/plugin.h>
7 #include <vpp/app/version.h>
8
9 VLIB_PLUGIN_REGISTER () = {
10   .version = VPP_BUILD_VER,
11   .description = "Vhost-User",
12 };