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