10 lines
128 B
Python
10 lines
128 B
Python
from venv import create
|
|
|
|
import frappe
|
|
|
|
from lms.install import create_moderator_role
|
|
|
|
|
|
def execute():
|
|
create_moderator_role()
|