-
Notifications
You must be signed in to change notification settings - Fork 2
/
msgs.go
47 lines (39 loc) · 840 Bytes
/
msgs.go
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
37
38
39
40
41
42
43
44
45
46
47
package msgs
const (
WelcomeMessage = `
Hello {name},
welcome to your bot,
You can use dockeroller to manage your docker daemon through different Messengers
e.g. list your images or containers:
`
ContainerRenamed = `
Container {old_name} successfully renamed to {new_name}
`
ImageTagged = `
Image {id} successfully tagged {tag}
`
ContainerNewNameInput = `
Enter new container name:
`
ImageNewNameInput = `
Enter new image tag:
`
Container = `
''Container name: '' {name},
''Used Image: '' {image},
''Status: '' {status}
`
Image = `
''ID: '' {id},
''Size: '' {size},
''Tags: '' {tags}
''Status: '' {status}
''Created at: '' {created_at}
`
Stat = `
''CPU Usage: '' {cpu_usage} %
''Online CPUs: '' {online_cpus}
''Memory Usage: '' {memory_usage} ({memory_usage%} %)
''Avaiable Mem: '' {avaiable_memory}
`
)