mirror of
https://github.com/usememos/memos.git
synced 2025-01-07 07:51:32 +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
|
||
|
}
|