7 lines
79 B
Go
7 lines
79 B
Go
package core
|
|
|
|
type Application interface {
|
|
//start the application
|
|
Start()
|
|
}
|