yuzucchii.xyz/config/database.zig
2025-05-03 20:42:44 -05:00

12 lines
205 B
Zig

pub const database = .{
.development = .{
.adapter = .postgresql,
},
.testing = .{
.adapter = .postgresql,
},
.production = .{
.adapter = .postgresql,
},
};