2023-09-17 22:13:42 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2023-11-16 16:20:20 +03:00
|
|
|
import Common.Global;
|
2023-11-17 00:04:21 +03:00
|
|
|
import TestingSystem.Common.Group.Group;
|
|
|
|
|
import TestingSystem.Common.TestingServer;
|
2023-11-16 16:20:20 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.PublishServerObject;
|
|
|
|
|
public class PublishGroup extends PublishServerObject<TestingServer, Group> {
|
|
|
|
|
public PublishGroup() {
|
|
|
|
|
super(Global.testingServer, Group.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|