Move friend-related functionality into the database.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / FriendDatabase.java
1 package net.pterodactylus.sone.database;
2
3 /**
4  * Combines a {@link FriendProvider} and a {@link FriendStore} into a friend database.
5  *
6  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
7  */
8 public interface FriendDatabase extends FriendProvider, FriendStore {
9
10 }