1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-01 13:34:13 +00:00
Beego/pkg/logs/alils/config.go

14 lines
393 B
Go
Raw Normal View History

2020-07-22 14:50:08 +00:00
package alils
const (
version = "0.5.0" // SDK version
signatureMethod = "hmac-sha1" // Signature method
2020-08-06 15:07:18 +00:00
// OffsetNewest is the log head offset, i.e. the offset that will be
2020-07-22 14:50:08 +00:00
// assigned to the next message that will be produced to the shard.
OffsetNewest = "end"
2020-08-06 15:07:18 +00:00
// OffsetOldest is the the oldest offset available on the logstore for a
2020-07-22 14:50:08 +00:00
// shard.
OffsetOldest = "begin"
)