#include "pipeline_passthrough.h"
#include "pipeline_passthrough_be.h"
static struct pipeline_fe_ops pipeline_passthrough_fe_ops = {
.f_init = NULL,
.f_free = NULL,
.cmds = NULL,
};
struct pipeline_type pipeline_passthrough = {
.name = "PASS-THROUGH",
.be_ops = &pipeline_passthrough_be_ops,
.fe_ops = &pipeline_passthrough_fe_ops,
};