mirror of
https://github.com/Xtao-Labs/misskey2telegram.git
synced 2024-11-22 13:55:53 +00:00
6 lines
162 B
Python
6 lines
162 B
Python
import firebase_admin
|
|
from firebase_admin import credentials
|
|
|
|
cred = credentials.Certificate("data/google.json")
|
|
google_app = firebase_admin.initialize_app(cred)
|