mirror of
https://github.com/prometheus/alertmanager
synced 2024-12-12 01:15:59 +00:00
20 lines
440 B
Go
20 lines
440 B
Go
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
package models
|
||
|
|
||
|
// This file was generated by the swagger tool.
|
||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||
|
|
||
|
import (
|
||
|
strfmt "github.com/go-openapi/strfmt"
|
||
|
)
|
||
|
|
||
|
// LabelSet label set
|
||
|
// swagger:model labelSet
|
||
|
type LabelSet map[string]string
|
||
|
|
||
|
// Validate validates this label set
|
||
|
func (m LabelSet) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|