QNZone.m 398 B

123456789101112131415161718192021222324
  1. //
  2. // QNZone.m
  3. // QiniuSDK
  4. //
  5. // Created by yangsen on 2020/4/16.
  6. // Copyright © 2020 Qiniu. All rights reserved.
  7. //
  8. #import "QNZone.h"
  9. #import "QNUpToken.h"
  10. #import "QNZoneInfo.h"
  11. @implementation QNZone
  12. - (QNZonesInfo *)getZonesInfoWithToken:(QNUpToken *)token {
  13. return nil;
  14. }
  15. - (void)preQuery:(QNUpToken *)token
  16. on:(QNPrequeryReturn)ret {
  17. ret(0, nil, nil);
  18. }
  19. @end