12 lines
164 B
Go
12 lines
164 B
Go
|
//go:build !windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "github.com/tardisx/discord-auto-upload/config"
|
||
|
|
||
|
func mainloop(c *config.ConfigService) {
|
||
|
|
||
|
ch := make(chan bool)
|
||
|
<-ch
|
||
|
}
|