mirror of
https://github.com/usatiuk/remotefs.git
synced 2025-10-28 07:27:48 +01:00
16 lines
164 B
C++
16 lines
164 B
C++
//
|
|
// Created by Stepan Usatiuk on 12.12.2024.
|
|
//
|
|
|
|
#ifndef FSSERVER_HPP
|
|
#define FSSERVER_HPP
|
|
|
|
|
|
class FsServer {
|
|
public:
|
|
void run();
|
|
};
|
|
|
|
|
|
#endif // FSSERVER_HPP
|