mirror of
https://github.com/usememos/memos.git
synced 2024-12-24 20:01:48 +03:00
7 lines
139 B
Go
7 lines
139 B
Go
|
package metric
|
||
|
|
||
|
// Collector is the interface definition for metric collector.
|
||
|
type Collector interface {
|
||
|
Collect(metric *Metric) error
|
||
|
}
|