Alejandro Acuña
2024-09-16 adba74e107bcda9e1cb510bc14364b02e781baef
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());
    }
 
}