cmd

package
v0.0.0-...-92a1ef8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 18, 2022 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Overview

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2021 ITRepablik itrepablik@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Index

Constants

This section is empty.

Variables

View Source
var QuestionCmd = &cobra.Command{
	Use:   "question",
	Short: "Shows a question",
	Long:  `Shows a question with the following required parameter: <no>`,
	Args:  cobra.ExactArgs(1),
	Run: func(cmd *cobra.Command, args []string) {

		no, err := strconv.Atoi(args[0])
		if err != nil {
			errMsg := fmt.Sprintf("error converting no to integer: %v", err.Error())
			itrlog.Error(errMsg)
			fmt.Println(errMsg)
			return
		}

		db, err := queries.InitTableQuestions()
		if err != nil {
			errMsg := fmt.Sprintf("error creating database and tables: %q", err.Error())
			itrlog.Fatalf(errMsg)
		}
		defer db.Close()

		err = validateAnswer(db, int64(no), true, "")
		if err != nil {
			errMsg := fmt.Sprintf("error validating answer: %q", err.Error())
			itrlog.Error(errMsg)
			fmt.Println(errMsg)
			return
		}
	},
}

QuestionCmd represents the question command

View Source
var QuestionsCmd = &cobra.Command{
	Use:   "questions",
	Short: "Shows question list",
	Long:  `Shows all the questions in a list`,
	Run: func(cmd *cobra.Command, args []string) {

		db, err := queries.InitTableQuestions()
		if err != nil {
			errMsg := fmt.Sprintf("error creating database and tables: %q", err.Error())
			itrlog.Fatalf(errMsg)
		}
		defer db.Close()

		err = getQuestions(db)
		if err != nil {
			errMsg := fmt.Sprintf("error retrieving questions: %q", err.Error())
			itrlog.Errorf(errMsg)
			fmt.Println(errMsg)
			return
		}
	},
}

QuestionsCmd represents the question command

Functions

func Execute

func Execute()

Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL