Skip to content

Commit

Permalink
resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Dec 4, 2023
1 parent 7363990 commit 1127350
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions nsls2api/cli/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import typer

import admin
import api
import auth
import beamline
import facility
import proposal

app = typer.Typer()
app.add_typer(admin.app, name="admin", help="Do powerful admin level magic")
app.add_typer(api.app, name="api", help="Make NSLS-II API request")
app.add_typer(auth.app, name="auth", help="Stuff about security and fun")
app.add_typer(beamline.app, name="beamline", help="Stuff about Beamlines")
app.add_typer(facility.app, name="facility", help="Stuff about Facilities")
app.add_typer(proposal.app, name="proposal", help="Stuff about Proposals")

if __name__ == "__main__":
app()
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.9"
license = "BSD-3-Clause"
keywords = []
authors = [
{ name = "Stuart Campbell", email = "scampbell@bnl.gov" },
Expand Down

0 comments on commit 1127350

Please sign in to comment.