aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/os_js/os.v
blob: 8b4e160ea4e2b744f875f8c928238f0faf8296f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module os_js

pub const (
	// todo(playX): NodeJS does not seem to have any path limit?
	max_path_len = 4096
)

pub struct Result {
pub:
	exit_code int
	output    string
	// stderr string // TODO
}