added new simple sommand that doesn't perform and API queries

This commit is contained in:
2020-03-26 21:40:05 +00:00
parent fa05c305e8
commit c7faee8a2c

View File

@ -100,6 +100,14 @@ func (j *jitsiMeeting) getJitsiNumbers() error {
return nil
}
// This doesn't query jitsi for phone dial in information
func newJitsiMeetingSimple() (jitsiMeeting, error) {
result := jitsiMeeting{}
result.getJitsiName()
return result, nil
}
// call functions are not currently implemented, but are here
func newJitsiMeeting() (jitsiMeeting, error) {
result := jitsiMeeting{}
result.getJitsiName()