This reverts commit fad897346f286303a6c4a2cb432ea44058e470cd, reversing changes made to e284b0ddae072311617a6fdd8393eb04aba873d2.
		
			
				
	
	
		
			14 lines
		
	
	
		
			393 B
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			393 B
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
| package alils
 | |
| 
 | |
| const (
 | |
| 	version         = "0.5.0"     // SDK version
 | |
| 	signatureMethod = "hmac-sha1" // Signature method
 | |
| 
 | |
| 	// OffsetNewest is 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 is the the oldest offset available on the logstore for a
 | |
| 	// shard.
 | |
| 	OffsetOldest = "begin"
 | |
| )
 |