高热共公日志库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
405 B

  1. package alils
  2. const (
  3. version = "0.5.0" // SDK version
  4. signatureMethod = "hmac-sha1" // Signature method
  5. // OffsetNewest stands for the log head offset, i.e. the offset that will be
  6. // assigned to the next message that will be produced to the shard.
  7. OffsetNewest = "end"
  8. // OffsetOldest stands for the oldest offset available on the logstore for a
  9. // shard.
  10. OffsetOldest = "begin"
  11. )