Files
cardboy/Firmware/main/include/shutdowner.hpp
2025-03-03 01:31:30 +01:00

19 lines
223 B
C++

//
// Created by Stepan Usatiuk on 02.03.2025.
//
#ifndef CB_SHUTDOWNER_HPP
#define CB_SHUTDOWNER_HPP
class Shutdowner {
public:
static Shutdowner& get();
private:
Shutdowner();
};
#endif // CB_SHUTDOWNER_HPP