mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Make UI not experimental * Display API and UI URLs * Remove link to old sources * Fix integration tests * Add UI to Usage Data * Add a "Using the GUI to edit the Devfile" page to doc * Add link to odo.dev specific page * Apply suggestions from code review Co-authored-by: Armel Soro <armel@rm3l.org> * Change favicon with odo logo * Display web console URL as part of the Dev status * Update UI static files * Document that Comments not supported * Add UI screenshots --------- Co-authored-by: Armel Soro <armel@rm3l.org>
21 lines
299 B
Go
21 lines
299 B
Go
package informer
|
|
|
|
type InformerClient struct {
|
|
info string
|
|
}
|
|
|
|
func NewInformerClient() *InformerClient {
|
|
return &InformerClient{}
|
|
}
|
|
|
|
func (o *InformerClient) AppendInfo(s string) {
|
|
if o.info != "" {
|
|
o.info += "\n"
|
|
}
|
|
o.info += s
|
|
}
|
|
|
|
func (o *InformerClient) GetInfo() string {
|
|
return o.info
|
|
}
|