mirror of
				https://github.com/zitadel/zitadel.git
				synced 2025-11-04 06:01:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package repository
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
)
 | 
						|
 | 
						|
type Repository interface {
 | 
						|
	Health(context.Context) error
 | 
						|
	UserRepository
 | 
						|
	AuthRequestRepository
 | 
						|
	TokenRepository
 | 
						|
	ApplicationRepository
 | 
						|
	KeyRepository
 | 
						|
	UserSessionRepository
 | 
						|
	UserGrantRepository
 | 
						|
	OrgRepository
 | 
						|
	IAMRepository
 | 
						|
	RefreshTokenRepository
 | 
						|
}
 |