- #pragma once
- #include <string>
- #include <string_view>
- namespace smartbotic::webui {
- /// Get the path to the web UI static assets
- [[nodiscard]] auto GetAssetsPath() -> std::string;
- /// Configure the assets path
- void SetAssetsPath(std::string_view path);
- } // namespace smartbotic::webui
|