| 6 | extern const std::map<std::string, const ConfigProto*> formats; |
| 7 | |
| 8 | static std::string supportStatus(SupportStatus status) |
| 9 | { |
| 10 | switch (status) |
| 11 | { |
| 12 | case SupportStatus::DINOSAUR: |
| 13 | return "🦖"; |
| 14 | |
| 15 | case SupportStatus::UNICORN: |
| 16 | return "🦄"; |
| 17 | |
| 18 | case SupportStatus::UNSUPPORTED: |
| 19 | return ""; |
| 20 | } |
| 21 | |
| 22 | return ""; |
| 23 | } |
| 24 | |
| 25 | int main(int argc, const char* argv[]) |
| 26 | { |