Skip to content

Commit 9f322a6

Browse files
committed
musuem WIP
1 parent fed823a commit 9f322a6

File tree

7 files changed

+889
-0
lines changed

7 files changed

+889
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package issues.i3729.museum;
2+
3+
import io.jooby.annotation.Path;
4+
5+
@Path("/special-events")
6+
public class Events {
7+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Jooby https://jooby.io
3+
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
4+
* Copyright 2014 Edgar Espina
5+
*/
6+
package issues.i3729.museum;
7+
8+
import io.jooby.annotation.Path;
9+
10+
@Path("/museum-hours")
11+
public class Museum {}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Jooby https://jooby.io
3+
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
4+
* Copyright 2014 Edgar Espina
5+
*/
6+
package issues.i3729.museum;
7+
8+
import static io.jooby.openapi.MvcExtensionGenerator.toMvcExtension;
9+
10+
import io.jooby.Jooby;
11+
12+
/**
13+
* Redocly Museum API.
14+
*
15+
* <p>An imaginary, but delightful Museum API for interacting with museum services and information.
16+
* Built with love by Redocly.
17+
*
18+
* @version 1.0.0
19+
* @contact
20+
*/
21+
public class MuseumApp extends Jooby {
22+
{
23+
mvc(toMvcExtension(Museum.class));
24+
mvc(toMvcExtension(Events.class));
25+
mvc(toMvcExtension(Tickets.class));
26+
}
27+
}

0 commit comments

Comments
 (0)