options.hpp (240B)
1 #pragma once 2 3 #include <string> 4 5 namespace stamd { 6 7 struct options_t 8 { 9 std::string base_url; // url with trailing '/' 10 std::string author; 11 std::string email; 12 std::string description; 13 std::string summary; 14 }; 15 16 } // namespace stamd