// api/configuration/devices/devices.methods.ts
import { getDeviceGroup, moveDevicesToGroup } from './group.methods';

/**
 * All operations available for the devices resource in configuration domain
 */
export const devicesOperations = {
	getDeviceGroup,
	moveDevicesToGroup,
};
