9 lines
249 B
Python
9 lines
249 B
Python
from ..mautic import MauticHelper
|
|
import datetime
|
|
|
|
def sync_customers():
|
|
print(datetime.datetime.now() + " *** START sync customers ")
|
|
helper = MauticHelper()
|
|
helper.sync()
|
|
|
|
print(datetime.datetime.now() + " *** END sync customers ") |