Skip to content

Commit

Permalink
Add simple package info to root package.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 1, 2014
1 parent 3088104 commit 9e93fc5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions retrofit/src/main/java/retrofit/package-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright 2014 Square, Inc.

/**
* Retrofit turns your REST API into a Java interface.
* <pre>
* public interface GitHubService {
* &#64;GET("/users/{user}/repos")
* List<Repo> listRepos(@Path("user") String user);
* }
* </pre>
*/
package retrofit;

0 comments on commit 9e93fc5

Please sign in to comment.