mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 09:51:36 +00:00
9 lines
216 B
Python
9 lines
216 B
Python
import gam
|
|
|
|
|
|
def build(user=None):
|
|
if not user:
|
|
user = gam._get_admin_email()
|
|
userEmail, _ = gam.convertUIDtoEmailAddress(user)
|
|
return (userEmail, gam.buildGAPIServiceObject('drive3', userEmail))
|