mirror of
				https://github.com/fastapi-users/fastapi-users.git
				synced 2025-11-04 14:45:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Ready-to-use and customizable users management for FastAPI."""
 | 
						|
 | 
						|
__version__ = "9.2.6"
 | 
						|
 | 
						|
from fastapi_users import models  # noqa: F401
 | 
						|
from fastapi_users.fastapi_users import FastAPIUsers  # noqa: F401
 | 
						|
from fastapi_users.manager import (  # noqa: F401
 | 
						|
    BaseUserManager,
 | 
						|
    InvalidPasswordException,
 | 
						|
)
 | 
						|
 | 
						|
__all__ = [
 | 
						|
    "models",
 | 
						|
    "FastAPIUsers",
 | 
						|
    "BaseUserManager",
 | 
						|
    "InvalidPasswordException",
 | 
						|
]
 |