Skip to content

Commit 3e3fba9

Browse files
committed
Create PrivateClient.java
1 parent 90841c7 commit 3e3fba9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.example.pkgprivate;
2+
3+
import io.avaje.http.api.Client;
4+
import io.avaje.http.api.Get;
5+
import io.avaje.http.api.Header;
6+
7+
@Client
8+
interface PrivateClient {
9+
10+
@Get("/private")
11+
String apiCall(@Header("Accept") String accept);
12+
13+
}

0 commit comments

Comments
 (0)