From 5c82754931d9030054f1fbae3792e520d0efb38f Mon Sep 17 00:00:00 2001 From: Altagos Date: Tue, 2 Dec 2025 21:49:45 +0100 Subject: [PATCH] fix import --- src/st/api.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/st/api.zig b/src/st/api.zig index c6033eb..40c9922 100644 --- a/src/st/api.zig +++ b/src/st/api.zig @@ -2,14 +2,13 @@ pub const fleet = @import("fleet.zig"); const st = @import("root.zig"); const http = st.http; +const Client = http.Client; const Response = st.http.Response; const models = st.models; const Wrapper = models.Wrapper; const Query = models.Query; -const Client = st.Client; - pub fn account(client: *Client) !Response(models.accounts.AccountWrapper) { return client.request( Wrapper(models.accounts.AccountWrapper), -- 2.51.2