Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,4 @@ RecognizeApi | [**recognizeMultipart**](docs/index.md#recognizemultipart) | **PO
ScanApi | [**scan**](docs/index.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
ScanApi | [**scanBase64**](docs/index.md#scanbase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
ScanApi | [**scanMultipart**](docs/index.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.

1 change: 1 addition & 0 deletions scripts/docs_format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ trim_trailing_spaces () {
}

trim_trailing_spaces "README.md"
sed -i -e '${/^$/d;}' "README.md"

for filename in ./docs/*.md; do
trim_trailing_spaces "$filename"
Expand Down
Loading