mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
15 lines
216 B
C++
15 lines
216 B
C++
#ifndef TWITTER_USER_H
|
|
#define TWITTER_USER_H
|
|
|
|
#include "simdjson.h"
|
|
|
|
namespace twitter {
|
|
|
|
struct twitter_user {
|
|
uint64_t id{};
|
|
std::string_view screen_name{};
|
|
};
|
|
|
|
} // namespace twitter
|
|
|
|
#endif // TWITTER_USER_H
|