building methods

This commit is contained in:
alessio 2016-07-30 23:14:14 +02:00
parent e4f558eeef
commit 6c8b25b5b6
1 changed files with 17 additions and 0 deletions

17
realize/run.go Normal file
View File

@ -0,0 +1,17 @@
package realize
func Run () error{
return nil
}
func Build() error{
return nil
}
func Install() error{
return nil
}
func Stop() error{
return nil
}