14 lines
263 B
Java
14 lines
263 B
Java
|
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();
|
||
|
}
|