Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!215
Feature/nat 468 refactor auth
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/nat 468 refactor auth
feature/NAT-468-refactor-auth
into
develop
Overview
0
Commits
8
Pipelines
13
Changes
8
Merged
Mohammad Torkashvand
requested to merge
feature/NAT-468-refactor-auth
into
develop
1 year ago
Overview
0
Commits
8
Pipelines
13
Changes
8
Expand
0
0
Merge request reports
Viewing commit
da77dde2
Prev
Next
Show latest version
8 files
+
33
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
da77dde2
run ruff
· da77dde2
Mohammad Torkashvand
authored
10 months ago
gso/api/v1/__init__.py
+
0
−
2
Options
@@ -3,11 +3,9 @@
from
fastapi
import
APIRouter
from
gso.api.v1.network
import
router
as
network_router
from
gso.api.v1.processes
import
router
as
processes_router
from
gso.api.v1.subscriptions
import
router
as
subscriptions_router
router
=
APIRouter
()
router
.
include_router
(
subscriptions_router
)
router
.
include_router
(
processes_router
)
router
.
include_router
(
network_router
)
Loading