-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.vb
More file actions
37 lines (35 loc) · 977 Bytes
/
Program.vb
File metadata and controls
37 lines (35 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Module Program
Sub Main(args As String())
If args.Length <= 0 Then
PrintHelp()
Return
End If
Select Case args(0)
Case "sms"
SendSMS.Run()
Return
Case "lms"
SendLMS.Run()
Return
Case "mms"
SendMMS.Run()
Return
Case "alimtalk"
SendAlimtalk.Run()
Return
Case "chingutalk"
SendChingutalk.Run()
Return
Case "balance"
GetBalance.Run()
Return
Case "scheduled"
SendScheduledMessages.Run()
Return
End Select
PrintHelp()
End Sub
Sub PrintHelp()
Console.WriteLine("Nurigo [sms, lms, mms, alimtalk, chingutalk, balance] 형식으로 실행하세요(소문자 주의)")
End Sub
End Module