8 lines
146 B
Go
Raw Normal View History

2021-06-06 23:13:55 +05:00
package models
// Host represents structure of single host that was parsed from hosts file.
type Host struct {
Domain string
Address string
}