forked from lxm_tools/flutter-picgo
9 lines
253 B
Dart
9 lines
253 B
Dart
class GithubApi {
|
|
|
|
static const String BASE_URL = 'https://api.github.com/';
|
|
|
|
static const String UPLOAD_CONTENTS = 'repos/:owner/:repo/contents/:path'; //PUT
|
|
|
|
static const String DELETE_CONTENTS = 'repos/:owner/:repo/contents/:path'; // DELETE
|
|
|
|
} |