This reverts commit e284b0ddae072311617a6fdd8393eb04aba873d2, reversing changes made to 8ef8fd26068a7b70865acbabee89f6691ae553a9.
		
			
				
	
	
		
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
package alils
 | 
						|
 | 
						|
const (
 | 
						|
	version         = "0.5.0"     // SDK version
 | 
						|
	signatureMethod = "hmac-sha1" // Signature method
 | 
						|
 | 
						|
	// OffsetNewest stands for the log head offset, i.e. the offset that will be
 | 
						|
	// assigned to the next message that will be produced to the shard.
 | 
						|
	OffsetNewest = "end"
 | 
						|
	// OffsetOldest stands for the oldest offset available on the logstore for a
 | 
						|
	// shard.
 | 
						|
	OffsetOldest = "begin"
 | 
						|
)
 |