File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Python/taskqueues-backup-images/functions Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15+ # [START v2imports]
16+ # Dependencies for task queue functions
17+ from google .cloud import tasks_v2
18+ import requests
19+ from firebase_functions .options import RetryConfig , RateLimits , SupportedRegion
20+
21+ // Dependencies for image backup sample
1522from datetime import datetime , timedelta
1623import json
1724import pathlib
1825from urllib .parse import urlparse
19-
2026from firebase_admin import initialize_app , storage
2127from firebase_functions import https_fn , tasks_fn , params
22- from firebase_functions .options import RetryConfig , RateLimits , SupportedRegion
23-
2428import google .auth
2529from google .auth .transport .requests import AuthorizedSession
26- from google . cloud import tasks_v2
27- import requests
30+ // [ END v2imports ]
31+
2832
2933app = initialize_app ()
3034
You can’t perform that action at this time.
0 commit comments