mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-16 23:43:12 +00:00
Agent-Logs-Url: https://github.com/abhigyanpatwari/GitNexus/sessions/db76e937-4b0e-4c4d-82b1-265a1fb3673d Co-authored-by: magyargergo <11230420+magyargergo@users.noreply.github.com>
7 lines
147 B
Python
7 lines
147 B
Python
"""Wildcard import — exercises `from X import *`."""
|
|
from utils.logger import *
|
|
|
|
|
|
def emit_all():
|
|
log_info("hello")
|
|
log_error("oops", 2)
|