mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 04:15:54 +02:00
25 lines
402 B
Go
25 lines
402 B
Go
package ent
|
|
|
|
func (m *Machine) GetOsname() string {
|
|
return m.Osname
|
|
}
|
|
|
|
func (b *Bouncer) GetOsname() string {
|
|
return b.Osname
|
|
}
|
|
|
|
func (m *Machine) GetOsversion() string {
|
|
return m.Osversion
|
|
}
|
|
|
|
func (b *Bouncer) GetOsversion() string {
|
|
return b.Osversion
|
|
}
|
|
|
|
func (m *Machine) GetFeatureflags() string {
|
|
return m.Featureflags
|
|
}
|
|
|
|
func (b *Bouncer) GetFeatureflags() string {
|
|
return b.Featureflags
|
|
}
|