mirror of
https://github.com/usememos/memos.git
synced 2025-02-23 06:37:41 +01: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
|
||
|
}
|