wireplumber/modules/module-config-policy.c
2020-05-13 11:21:45 -04:00

18 lines
431 B
C

/* WirePlumber
*
* Copyright © 2019 Collabora Ltd.
* @author Julian Bouzas <julian.bouzas@collabora.com>
*
* SPDX-License-Identifier: MIT
*/
#include <wp/wp.h>
#include "module-config-policy/context.h"
WP_PLUGIN_EXPORT void
wireplumber__module_init (WpModule * module, WpCore * core, GVariant * args)
{
WpConfigPolicyContext *ctx = wp_config_policy_context_new (module);
wp_plugin_register (WP_PLUGIN (ctx));
}