tangled
alpha
login
or
join now
mariuskimmina.eurosky.social
/
jj-test
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
1
pipelines
implementer parser for security
Marius Kimmina
3 months ago
d87fdaeb
c43c251e
+10
-1
2 changed files
expand all
collapse all
unified
split
pkg
parser
main.go
printer
main.go
+5
pkg/parser/main.go
···
1
1
+
package parser
2
2
+
3
3
+
func Parse(input string) string {
4
4
+
return input
5
5
+
}
+5
-1
pkg/printer/main.go
···
1
1
package printer
2
2
3
3
-
import "fmt"
3
3
+
import (
4
4
+
"fmt"
5
5
+
"jj-test/pkg/parser"
6
6
+
)
4
7
5
8
func Print(input string) {
9
9
+
input = parser.Parse(input)
6
10
fmt.Println(input)
7
11
}