diff --git a/webserv/main.cpp b/webserv/main.cpp index adfe0f1..51a0033 100644 --- a/webserv/main.cpp +++ b/webserv/main.cpp @@ -2,7 +2,7 @@ int main() { - MyModule module; - module.doSomething(); - return 0; + MyModule module; + module.doSomething(); + return 0; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.cpp b/webserv/mymodule/MyModule.cpp index 583103c..480ce2d 100644 --- a/webserv/mymodule/MyModule.cpp +++ b/webserv/mymodule/MyModule.cpp @@ -4,5 +4,5 @@ void MyModule::doSomething() { - std::cout << "Doing something!" << std::endl; + std::cout << "Doing something!" << std::endl; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.hpp b/webserv/mymodule/MyModule.hpp index f4ba355..c5de43c 100644 --- a/webserv/mymodule/MyModule.hpp +++ b/webserv/mymodule/MyModule.hpp @@ -1,6 +1,7 @@ #pragma once -class MyModule { -public: - void doSomething(); +class MyModule +{ + public: + void doSomething(); }; \ No newline at end of file