-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all server routes and stub functions (#7)
* Writing endpoints for the server and stub functions * Added variable types for the server routes --------- Co-authored-by: dzl-i <[email protected]>
- Loading branch information
Showing
3 changed files
with
159 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from typing import Dict | ||
|
||
def invoice_quick_fix_wellformedness_v1(report_id) -> Dict: | ||
return {} | ||
|
||
def invoice_quick_fix_syntax_v1(report_id) -> Dict: | ||
return {} | ||
|
||
def invoice_quick_fix_peppol_v1(report_id) -> Dict: | ||
return {} | ||
|
||
def invoice_quick_fix_schema_v1(report_id) -> Dict: | ||
return {} | ||
|
||
def invoice_check_validity_v1(report_id) -> Dict: | ||
return {} | ||
|
||
def invoice_generate_hash_v1(name, format, source, data) -> Dict: | ||
return {} | ||
|
||
def invoice_bulk_quick_fix_v1(invoices) -> Dict: | ||
return {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters