(format string, a ...interface{})
| 108 | } |
| 109 | |
| 110 | func (m *SessionModule) Printf(format string, a ...interface{}) { |
| 111 | m.Session.Events.Printf(format, a...) |
| 112 | } |
| 113 | |
| 114 | func (m *SessionModule) Requires(modName string) { |
| 115 | m.requires = append(m.requires, modName) |