diff options
author | eportnov <eportnov@ibs.ru> | 2022-09-12 16:46:44 +0300 |
---|---|---|
committer | eportnov <eportnov@ibs.ru> | 2022-09-12 16:46:44 +0300 |
commit | cdb7ae4c729b6a6c51b57eeefd21574952a4b767 (patch) | |
tree | c465900180840832e241ca5419dd90b429459588 /src/main.cpp | |
parent | 9fa4addff6f90a8b5697a594e034f5517d64dd25 (diff) | |
download | obmc-sila-smtp-cdb7ae4c729b6a6c51b57eeefd21574952a4b767.tar.xz |
refactoringfeature/refactor
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index ba2848d..96c06df 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,13 +1,13 @@ #include <sdbusplus/asio/connection.hpp> -#include "smtp_service.hpp" +#include "service/smtp.hpp" int main() { boost::asio::io_service io_context; auto connection = std::make_shared<sdbusplus::asio::connection>( io_context ); - smtp::SmtpService smtp{ connection }; + smtp::service::Smtp smtp{ connection }; io_context.run(); return 0; |