8 lines
146 B
Go
8 lines
146 B
Go
package models
|
|
|
|
// Host represents structure of single host that was parsed from hosts file.
|
|
type Host struct {
|
|
Domain string
|
|
Address string
|
|
}
|