9 lines
94 B
Go
9 lines
94 B
Go
package limiter
|
|
|
|
import "time"
|
|
|
|
type Action struct {
|
|
Type string
|
|
Timestamp time.Time
|
|
}
|