Add dummy script to return static password.

This commit is contained in:
Andrew Tomaka 2011-12-06 00:52:11 -05:00
parent 70ec06dde1
commit 6bcf3071bf

9
generate.php Executable file
View file

@ -0,0 +1,9 @@
<?php
$password = array(
'password' => 'fuckyou'
);
echo json_encode($password);
?>