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

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

pub const std_options = struct {
    // Set the log level to info
    pub const log_level = .info;
    // Define logFn to override the std implementation
    pub const logFn = @import("sys.zig").log;
};

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