mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-10-31 21:00:40 +00:00
24 lines
514 B
Go
24 lines
514 B
Go
// Copyright (c) 2019, Drone Plugins project authors
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package drone
|
|
|
|
// System represents the available system variables.
|
|
type System struct {
|
|
// Proto for the system protocol.
|
|
Proto string
|
|
|
|
// Host for the system host name.
|
|
Host string
|
|
|
|
// Version for the system version.
|
|
Version string
|
|
}
|
|
|
|
func (s System) String() string {
|
|
return s.Host
|
|
}
|