зеркало из https://github.com/mozilla/mig.git
15 строки
500 B
Go
15 строки
500 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Contributor: Aaron Meihm ameihm@mozilla.com [:alm]
|
|
|
|
package mig /* import "mig.ninja/mig" */
|
|
|
|
// Describes a loader entry stored in the database
|
|
type LoaderEntry struct {
|
|
ID float64 // Loader ID
|
|
Name string // Loader name
|
|
AgentName string // Loader environment, agent name
|
|
}
|