2022-08-10 10:53:23 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Clippy {
|
|
|
|
public:
|
|
|
|
void Run(const std::vector<std::string>& args);
|
|
|
|
|
|
|
|
private:
|
2022-08-10 11:04:37 +03:00
|
|
|
bool TryExecuteClippyCommand(const std::vector<std::string>& args);
|
2022-08-10 10:53:23 +03:00
|
|
|
};
|