How To Extends Ccontroller In Modules

I have a custom SelfController extends from CController

then ,I have a module named MeModule extends CWebModule,

now I have a question ,how to use actions defined in SelfController in my module?

You only have to use controllers in your module that extends the SelfController.


class MymoduleController extends SelfController {...}

I see ,tks !