chore: breaking rename

This commit is contained in:
MistEO
2022-12-02 00:22:47 +08:00
parent 8ff2c5e1d0
commit d9dcbb6289
345 changed files with 374 additions and 372 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include "Task/InterfaceTask.h"
namespace asst
{
class DebugTask : public InterfaceTask
{
public:
inline static constexpr std::string_view TaskType = "Debug";
DebugTask(const AsstCallback& callback, Assistant* inst);
virtual ~DebugTask() override = default;
virtual bool run() override;
};
}