Files
bun.sh/src/cli/discord_command.zig
Jarred Sumner 574be79253 alright thats the rename
Former-commit-id: 0faf61249e76382dfb1aa8721249474eae920753
2021-08-17 01:44:30 -07:00

11 lines
304 B
Zig

usingnamespace @import("../global.zig");
const std = @import("std");
const open = @import("../open.zig");
pub const DiscordCommand = struct {
const discord_url: string = "https://bun.sh/discord";
pub fn exec(allocator: *std.mem.Allocator) !void {
try open.openURL(discord_url);
}
};