Coverage for src/lexigram/admin/models/__init__.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-24 23:18 +0800

1"""Models module for lexigram-admin. 

2 

3Re-exports AdminUser and related models. 

4""" 

5 

6from __future__ import annotations 

7 

8from lexigram.admin.auth.integration import AdminUser 

9 

10__all__ = ["AdminUser"]