mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 11:48:07 -06:00
24 lines
349 B
C
24 lines
349 B
C
#include "api_keys.h"
|
|
char *get_api_key(){
|
|
return "key\0";
|
|
}
|
|
char *get_api_secret(){
|
|
return "secret_key\0";
|
|
}
|
|
char *get_dropbox_api_key(){
|
|
return "key\0";
|
|
}
|
|
char *get_dropbox_api_secret(){
|
|
return "secret_key\0";
|
|
}
|
|
char *get_twishort_api_key(){
|
|
return "key\0";
|
|
}
|
|
char *get_bts_user(){
|
|
return "user\0";
|
|
}
|
|
char *get_bts_password(){
|
|
return "pass\0";
|
|
}
|
|
|