clippy-terminal/src/clippy/clippy.hpp

12 lines
139 B
C++
Raw Normal View History

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:
};