wireplumber/modules/module-config-endpoint.c
2020-01-09 08:50:03 -05:00

18 lines
439 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-endpoint/context.h"
void
wireplumber__module_init (WpModule * module, WpCore * core, GVariant * args)
{
WpConfigEndpointContext *ctx = wp_config_endpoint_context_new (core);
wp_module_set_destroy_callback (module, g_object_unref, ctx);
}