将 from app.services.tjnetwork import * 改为显式导入
This commit is contained in:
@@ -1,6 +1,34 @@
|
||||
from fastapi import APIRouter, Request
|
||||
from typing import Any, List, Dict, Union
|
||||
from app.services.tjnetwork import *
|
||||
from app.services.tjnetwork import (
|
||||
Any,
|
||||
ChangeSet,
|
||||
add_mixing,
|
||||
add_source,
|
||||
api,
|
||||
delete_mixing,
|
||||
delete_source,
|
||||
get_emitter,
|
||||
get_emitter_schema,
|
||||
get_mixing,
|
||||
get_mixing_schema,
|
||||
get_pipe_reaction,
|
||||
get_pipe_reaction_schema,
|
||||
get_quality,
|
||||
get_quality_schema,
|
||||
get_reaction,
|
||||
get_reaction_schema,
|
||||
get_source,
|
||||
get_source_schema,
|
||||
get_tank_reaction,
|
||||
get_tank_reaction_schema,
|
||||
set_emitter,
|
||||
set_pipe_reaction,
|
||||
set_quality,
|
||||
set_reaction,
|
||||
set_source,
|
||||
set_tank_reaction,
|
||||
)
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user