8 lines
133 B
PHP
8 lines
133 B
PHP
<?php
|
|
if (file_exists('db/google_tokens.json')) {
|
|
unlink('db/google_tokens.json');
|
|
}
|
|
|
|
header('Location: dashboard.php');
|
|
exit();
|