Create hash.php

This commit is contained in:
Nicholas Hubbard 2016-01-07 15:24:49 -05:00
parent e68032904b
commit d6496c22d8

7
controllers/hash.php Normal file
View File

@ -0,0 +1,7 @@
<?php
echo json_encode(
array(
"gitHash" => trim(`git rev-parse HEAD`)
)
);
?>