mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 14:17:48 +01: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
|
||
|
}
|