7 lines
103 B
Python
7 lines
103 B
Python
|
import imp
|
||
|
from .user import Player
|
||
|
from .clan import Clan
|
||
|
|
||
|
class ClashOfClans(Player, Clan):
|
||
|
pass
|