blob: 6eb310ad2f1aae630d568e1e8e93e72724d2cddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.wireguard.android;
import android.databinding.ObservableList;
import com.wireguard.config.Profile;
/**
* Interface for the background connection service.
*/
public interface ProfileServiceInterface {
ObservableList<Profile> getProfiles();
}
|