mirror of
https://github.com/usememos/memos.git
synced 2024-12-22 18:51:31 +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
|
|
}
|