Add method stubs
This commit is contained in:
parent
d4dc405b2b
commit
64100065c9
23
pacserver.cs
Normal file
23
pacserver.cs
Normal file
@ -0,0 +1,23 @@
|
||||
public class Pacserver {
|
||||
public static string pacmanCacheDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanCacheDirectory() {
|
||||
return pacmanCacheDirectory;
|
||||
}
|
||||
|
||||
public static string pacmanDatabaseDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanDatabaseDirectory() {
|
||||
return pacmanDatabaseDirectory;
|
||||
}
|
||||
|
||||
public static void checkForNewerPackagesAndDatabases() {
|
||||
|
||||
}
|
||||
|
||||
public static void transferPacmanCache() {
|
||||
|
||||
}
|
||||
|
||||
public static void transferPacmanDatabases() {
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user