mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
* feat: add scripts format Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add go work Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
27 lines
566 B
Go
27 lines
566 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
func main() {
|
|
log.Println("Current module is still under development.")
|
|
message := `
|
|
Current module is still under development.
|
|
|
|
____ _____ __ __
|
|
/ __ \ |_ _|| \/ |
|
|
| | | | _ __ ___ _ __ | | | \ / |
|
|
| | | || '_ \ / _ \| '_ \ | | | |\/| |
|
|
| |__| || |_) || __/| | | | _| |_ | | | |
|
|
\____/ | .__/ \___||_| |_||_____||_| |_|
|
|
| |
|
|
|_|
|
|
|
|
Keep checking for updates!
|
|
`
|
|
|
|
fmt.Println(message)
|
|
}
|