Skip to content

Commit b4f208e

Browse files
committed
Minor update
1 parent 2693f0f commit b4f208e

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVari
7474

7575
## Documentation for API Endpoints
7676

77-
All URIs are relative to *http://localhost:8001
77+
All URIs are relative to *http://localhost:8001*
7878

7979
Class | Method | HTTP request | Description
8080
------------ | ------------- | ------------- | -------------

api/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ info:
77
title: Customer Creation API
88
version: 1.0.0
99
servers:
10-
- url: /
10+
- description: Local development server
11+
url: http://localhost:8001
1112
tags:
1213
- description: Operations related to customers.
1314
name: Customer

configuration.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CustomerAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# \CustomerAPI
22

3-
All URIs are relative to *http://localhost*
3+
All URIs are relative to *http://localhost:8001*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

git_push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ if [ "$git_remote" = "" ]; then # git remote not defined
5050

5151
fi
5252

53-
git pull origin main
53+
git pull origin master
5454

5555
# Pushes (Forces) the changes in the local repository up to the remote repository
5656
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
57-
git push origin main 2>&1 | grep -v 'To https'
57+
git push origin master 2>&1 | grep -v 'To https'

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/Password-Management/API-Client v0.0.0-20241217112055-fc9aa2c4a472 h1:hpeCM/11kVs9Ee5HHCPHbBgMpscfMjHAg20VqevpFLc=
2-
github.com/Password-Management/API-Client v0.0.0-20241217112055-fc9aa2c4a472/go.mod h1:PHrl2Iy59FzL/Yr6iNaiQxzAd9QFn4y40d+Yfet081U=
1+
github.com/Password-Management/API-Client v0.0.1 h1:Zrej/JVY2rXcsZleReabKcgEVXNC28jlrVxoN6Gc7Ms=
2+
github.com/Password-Management/API-Client v0.0.1/go.mod h1:0eECNeG+ptTP9kRYfiyQUQppF41puToLNCd+rF+pEMc=
33
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

server.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ info:
77
name: Vivek Sharma
88
email: sharmavivek1709@gmail.com
99

10+
servers:
11+
- url: http://localhost:8001
12+
description: Local development server
13+
1014
tags:
1115
- name: Customer
1216
description: Operations related to customers.

0 commit comments

Comments
 (0)