Skip to content

Commit

Permalink
refactor(server): remove superfluous includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Dec 15, 2023
1 parent 3edfc9f commit 503f2fb
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions server/main.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#include <format>
#include <iostream>

#include <httplib.h>
#include <glaze/glaze.hpp>

#include <vencord/logger.hpp>
#include <vencord/patchbay.hpp>

struct targets
{
std::vector<vencord::prop> include;
std::vector<vencord::prop> exclude;
};

template <>
struct glz::meta<vencord::target_mode>
{
Expand All @@ -21,12 +24,6 @@ struct glz::meta<vencord::prop>
static constexpr auto value = object("key", &T::key, "value", &T::value);
};

struct targets
{
std::vector<vencord::prop> include;
std::vector<vencord::prop> exclude;
};

template <>
struct glz::meta<targets>
{
Expand Down

0 comments on commit 503f2fb

Please sign in to comment.