ghy
Alejandro Acuña
2025-03-12 26319e4c5bfbee722c15b8e7ccca9b6127bb1cb8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package art.servers.colorsserver;
 
import art.library.model.devices.colors.controller.M.M_Controller;
import art.library.model.devices.colors.controller.M.M_ControllerInformation;
import art.servers.configuration.Configuration;
 
 
public class Model extends art.servers.Model
{
    
    
    public Model(Configuration configuration) throws Exception
    {
        super(configuration, "controllers", M_Controller.class.getName(), M_ControllerInformation.class.getName());
    }
 
}