Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
a91ebd9bbd412674c5f452f55bb4bbecc265d37f
/
.
/
971CV
/
src
/
org
/
frc971
/
TestClient.java
blob: fed5c271bf2c6551b07adedc4d405bbba7e72ebf [
file
] [
log
] [
blame
]
/**
*
*/
package
org
.
frc971
;
/**
* @author daniel
*
*/
public
class
TestClient
extends
Thread
{
public
TestClient
()
{
super
(
"Test Client"
);
start
();
}
public
void
run
()
{
String
[]
args
=
{};
VisionTuner
.
main
(
args
);
}
}