blob: 3fea0626b23c4c1f7fc98186d8810944dfe84a9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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);
}
};
|