mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 17:12:02 +03:00
8 lines
121 B
Go
8 lines
121 B
Go
|
package metric
|
||
|
|
||
|
// Metric is the API message for metric.
|
||
|
type Metric struct {
|
||
|
Name string
|
||
|
Labels map[string]string
|
||
|
}
|