aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
blob: 3a6a8c4c6c626817ef3381caed8a0e7a159b0aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const std = @import("std");

pub const PLUGIN_NAME = "Zig Plugin";
pub const LOG_NAME = "ZIGPLUGIN";
pub const DEPENDENCY_NAME = "ZigPlugin";

pub const std_options = .{
    .logFn = @import("sys.zig").log,
    .log_level = .info,
};

comptime {
    _ = @import("interface.zig");
}