5 lines
81 B
Python
5 lines
81 B
Python
|
#!/usr/bin/env python3
|
||
|
def createPeg():
|
||
|
from Peg import Peg
|
||
|
return Peg()
|