12 lines
195 B
Go
12 lines
195 B
Go
|
package graphite
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/FreifunkBremen/yanic/runtime"
|
||
|
)
|
||
|
|
||
|
// InsertLink stores per link statistics
|
||
|
func (c *Connection) InsertLink(link *runtime.Link, time time.Time) {
|
||
|
}
|