package embox.cmd.testing.input

@AutoCmd
@Cmd(name = "input_test",
	help = "Print input events from device",
	man = '''
		NAME
			clock - Print input events from device
		SYNOPSIS
			Simple program that print input events from device in
			raw form.
		DESCRIPTION

		AUTHORS
			Anton Kozlov
	''')
module input_test {
	source "input_test.c"

	depends embox.driver.input.core
}

