mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			224 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			224 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package store
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/lunny/nodb/store/driver"
 | 
						|
)
 | 
						|
 | 
						|
type Snapshot struct {
 | 
						|
	driver.ISnapshot
 | 
						|
}
 | 
						|
 | 
						|
func (s *Snapshot) NewIterator() *Iterator {
 | 
						|
	it := new(Iterator)
 | 
						|
	it.it = s.ISnapshot.NewIterator()
 | 
						|
 | 
						|
	return it
 | 
						|
}
 |