Sort imports in all files (#21119)

Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
pfg
2025-07-21 13:26:47 -07:00
committed by GitHub
parent 74d3610d41
commit 83760fc446
820 changed files with 8062 additions and 7467 deletions

View File

@@ -1,3 +1,5 @@
const PostgresSQLConnection = @This();
socket: Socket,
status: Status = Status.connecting,
ref_count: u32 = 1,
@@ -1713,11 +1715,13 @@ const debug = bun.Output.scoped(.Postgres, false);
const MAX_PIPELINE_SIZE = std.math.maxInt(u16); // about 64KB per connection
// @sortImports
pub const js = JSC.Codegen.JSPostgresSQLConnection;
pub const fromJS = js.fromJS;
pub const fromJSDirect = js.fromJSDirect;
pub const toJS = js.toJS;
const PostgresCachedStructure = @import("./PostgresCachedStructure.zig");
const PostgresRequest = @import("./PostgresRequest.zig");
const PostgresSQLConnection = @This();
const PostgresSQLQuery = @import("./PostgresSQLQuery.zig");
const PostgresSQLStatement = @import("./PostgresSQLStatement.zig");
const SocketMonitor = @import("./SocketMonitor.zig");
@@ -1742,10 +1746,5 @@ const JSC = bun.JSC;
const JSValue = JSC.JSValue;
const AutoFlusher = JSC.WebCore.AutoFlusher;
pub const js = JSC.Codegen.JSPostgresSQLConnection;
pub const fromJS = js.fromJS;
pub const fromJSDirect = js.fromJSDirect;
pub const toJS = js.toJS;
const uws = bun.uws;
const Socket = uws.AnySocket;