mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
20 lines
575 B
Zig
20 lines
575 B
Zig
const bun = @import("../global.zig");
|
|
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 {
|
|
try open.openURL(discord_url);
|
|
}
|
|
};
|