jira-bot/cmd/main.go

12 lines
138 B
Go
Raw Normal View History

2021-06-03 01:59:32 +03:00
package main
2021-06-03 09:30:25 +03:00
import (
"git/ecom/jira-bot/pkg/bot"
"git/ecom/jira-bot/pkg/message"
)
2021-06-03 01:59:32 +03:00
func main() {
2021-06-03 09:30:25 +03:00
message.Message()
2021-06-03 01:59:32 +03:00
bot.JiraBot()
}