blob: c68a7f9b1571370dc0bf679bb910ab5fb562d593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MIME_TYPES_HH
#define MIME_TYPES_HH
#include <string_view>
namespace mime_types {
std::string_view from_extension(std::string_view ext);
} // namespace mime_types
#endif // MIME_TYPES_HH
|