diff --git a/.gitignore b/.gitignore index 0cafc1c..dfcd050 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.venv/ \ No newline at end of file +.venv/ +.idea/ diff --git a/AutoBuild/main.go b/AutoBuild/main.go new file mode 100644 index 0000000..d2776b7 --- /dev/null +++ b/AutoBuild/main.go @@ -0,0 +1,14 @@ +package main + +func main() { + + type FilterList struct { + abp []string + hosts []string + } + filterlist := FilterList{ + []string{"experimental.txt", "filter.txt"}, + []string{"hosts.txt", "nofarm_hosts.txt"}} + + //fmt.Println(filterlist) +}