Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
organize node-fetching functions in folders
Browse files Browse the repository at this point in the history
Nate-Wessel committed Jan 7, 2025
1 parent 3872cd3 commit a1aa2c0
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from app.db import getConnection
from app.get_nearest_here_nodes import get_here_nodes_within
from app.get_px_node import get_px_node
from app.nodes.byID.px import get_px_node

SQL = '''
SELECT
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions backend/app/routes.py
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@
from app import app
from app.db import getConnection
from app.get_nearest_here_nodes import get_here_nodes_within
from app.get_here_node import get_here_node
from app.get_centreline_node import get_centreline_node
from app.nodes.byID.here import get_here_node
from app.nodes.byID.centreline import get_centreline_node
from app.get_travel_time import get_travel_time
from app.get_here_links import get_here_links
from app.get_centreline_links import get_centreline_links

0 comments on commit a1aa2c0

Please sign in to comment.