Skip to content

Commit 24e8d99

Browse files
committed
rename to accomodate both client and server
1 parent 655b9bd commit 24e8d99

File tree

5 files changed

+62
-8
lines changed

5 files changed

+62
-8
lines changed

LICENSE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The OpenAPI.jl package is licensed under the MIT "Expat" License:
2+
3+
Copyright (c) 2022: Julia Computing Inc. All rights reserved.
4+
5+
> Permission is hereby granted, free of charge, to any person obtaining a copy
6+
> of this software and associated documentation files (the "Software"), to deal
7+
> in the Software without restriction, including without limitation the rights
8+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
> copies of the Software, and to permit persons to whom the Software is
10+
> furnished to do so, subject to the following conditions:
11+
>
12+
> The above copyright notice and this permission notice shall be included in all
13+
> copies or substantial portions of the Software.
14+
>
15+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
> SOFTWARE.
22+
>

Project.toml

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
1-
name = "OpenAPIServer"
1+
name = "OpenAPI"
22
uuid = "d5e62ea6-ddf3-4d43-8e4c-ad5e6c8bfd7d"
3-
authors = ["tan <[email protected]>"]
3+
keywords = ["Swagger", "OpenAPI", "REST"]
4+
license = "MIT"
5+
desc = "OpenAPI server and client helper for Julia"
6+
authors = ["Tanmay Mohapatra <[email protected]>"]
47
version = "0.1.0"
8+
9+
[deps]
10+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
11+
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
12+
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
13+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
14+
LibCURL = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
15+
MbedTLS = "739be429-bea8-5141-9913-cc70e7f3736d"
16+
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
17+
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
18+
19+
[compat]
20+
Downloads = "1"
21+
HTTP = "1"
22+
JSON = "0.20, 0.21"
23+
LibCURL = "0.6"
24+
MbedTLS = "0.6.8, 0.7, 1"
25+
URIs = "1.3"
26+
julia = "1.6"
27+
28+
[extras]
29+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
30+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
31+
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
32+
33+
[targets]
34+
test = ["Test", "Random", "URIs"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# OpenAPIServer.jl
1+
# OpenAPI.jl

src/OpenAPI.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module OpenAPIServer
2+
3+
using HTTP, JSON, OpenAPIClient, URIs
4+
5+
include("server.jl")
6+
7+
end # module

src/OpenAPIServer.jl

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)