How to Install and Uninstall golang-gopkg-warnings-0-devel.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "golang-gopkg-warnings-0-devel.noarch" package

Please follow the instructions below to install golang-gopkg-warnings-0-devel.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install golang-gopkg-warnings-0-devel.noarch

2. Uninstall "golang-gopkg-warnings-0-devel.noarch" package

Here is a brief guide to show you how to uninstall golang-gopkg-warnings-0-devel.noarch on Fedora 34:

$ sudo dnf remove golang-gopkg-warnings-0-devel.noarch $ sudo dnf autoremove

3. Information about the golang-gopkg-warnings-0-devel.noarch package on Fedora 34

Last metadata expiration check: 4:06:51 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : golang-gopkg-warnings-0-devel
Version : 0.1.2
Release : 10.fc34
Architecture : noarch
Size : 13 k
Source : golang-gopkg-warnings-0-0.1.2-10.fc34.src.rpm
Repository : fedora
Summary : Implements error handling with non-fatal errors (warnings)
URL : https://github.com/go-warnings/warnings
License : BSD
Description : A recurring programming pattern pattern is to allow interrupting the flow on any
: received error. But what if there are errors that should be noted but still not
: fatal, for which the flow should not be interrupted? Implementing such logic at
: each if statement would make the code complex and the flow much harder to
: follow.
:
: Package Warnings provides the Collector type and a clean and simple pattern for
: achieving such logic. The Collector takes care of deciding when to break the
: flow and when to continue, collecting any non-fatal errors (warnings) along the
: way. The only requirement is that fatal and non-fatal errors can be
: distinguished programmatically.
:
: This package contains the source code needed for building packages that
: reference the following Go import paths:
: – gopkg.in/warnings.v0