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