Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#pragma once
#include "UVLoop.h"
namespace panda { namespace unievent { namespace backend { namespace uv {
struct UVBackend : Backend {
UVBackend () : Backend("uv") {}
LoopImpl* new_loop (LoopImpl::Type type) override {
return new UVLoop(type);
};
};
}}}}