A SpaceTraders Agent
1const st = @import("../root.zig");
2const Client = st.http.Client;
3const Response = st.http.Response;
4const Wrapper = st.models.Wrapper;
5
6pub const AccountWrapper = struct {
7 account: Account,
8};
9
10pub const Account = struct {
11 id: []const u8,
12 email: ?[]const u8 = null,
13 token: ?[]const u8 = null,
14 createdAt: []const u8,
15};