Initial commit.

This commit is contained in:
2021-06-06 23:13:55 +05:00
commit 462d09cee2
16 changed files with 631 additions and 0 deletions

7
internal/models/host.go Normal file
View File

@@ -0,0 +1,7 @@
package models
// Host represents structure of single host that was parsed from hosts file.
type Host struct {
Domain string
Address string
}