blob: 46b3b37045d55f6bfd0564d6f9de6c07db982fa3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
const bun = @import("root").bun;
const string = bun.string;
const Output = bun.Output;
const Global = bun.Global;
const Environment = bun.Environment;
const strings = bun.strings;
const MutableString = bun.MutableString;
const stringZ = bun.stringZ;
const default_allocator = bun.default_allocator;
const C = bun.C;
const std = @import("std");
const open = @import("../open.zig");
pub const DiscordCommand = struct {
const discord_url: string = "https://bun.sh/discord";
pub fn exec(_: std.mem.Allocator) !void {
open.openURL(discord_url);
}
};
|