Add clippy

This commit is contained in:
Timofey 2022-08-10 10:53:23 +03:00
parent a9fccb588b
commit 6cc47ac543
3 changed files with 29 additions and 7 deletions

11
src/clippy/clippy.hpp Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include <vector>
#include <string>
class Clippy {
public:
void Run(const std::vector<std::string>& args);
private:
};