webui.hpp 292 B

1234567891011121314
  1. #pragma once
  2. #include <string>
  3. #include <string_view>
  4. namespace smartbotic::webui {
  5. /// Get the path to the web UI static assets
  6. [[nodiscard]] auto GetAssetsPath() -> std::string;
  7. /// Configure the assets path
  8. void SetAssetsPath(std::string_view path);
  9. } // namespace smartbotic::webui