Skip to content

Commit

Permalink
create attorney and client gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
YifanLiu2 committed Jul 20, 2023
1 parent c81e339 commit 31e09e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/gateway/AttorneyGateway.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package gateway;

public interface AttorneyGateway extends UserGateway{

}
4 changes: 4 additions & 0 deletions src/main/java/gateway/ClientGateway.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package gateway;

public interface ClientGateway extends UserGateway{
}

0 comments on commit 31e09e0

Please sign in to comment.