Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/pkg/js/generated/ts/goconsole.ts
2070 views
1
2
3
/**
4
* NewGoConsolePrinter Function
5
*/
6
export function NewGoConsolePrinter(): GoConsolePrinter {
7
return new GoConsolePrinter();
8
}
9
10
11
12
/**
13
*/
14
export class GoConsolePrinter {
15
16
17
// Constructor of GoConsolePrinter
18
constructor() {}
19
/**
20
* Log Method
21
*/
22
public Log(msg: string): void {
23
return;
24
}
25
26
27
/**
28
* Warn Method
29
*/
30
public Warn(msg: string): void {
31
return;
32
}
33
34
35
/**
36
* Error Method
37
*/
38
public Error(msg: string): void {
39
return;
40
}
41
42
43
}
44
45
46