xref: /openbmc/bmcweb/src/webserver_main.cpp (revision 55385c705c0efc58b88ff885b78ee65acb455b85)
1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 
4 #include "webserver_cli.hpp"
5 
main(int argc,char ** argv)6 int main(int argc, char** argv) noexcept(false)
7 {
8     return runCLI(argc, argv);
9 }
10