How to Install and Uninstall compat-golang-github-facebookgo-inject-devel.noarch Package on Fedora 36

Last updated: October 06,2024

1. Install "compat-golang-github-facebookgo-inject-devel.noarch" package

Please follow the instructions below to install compat-golang-github-facebookgo-inject-devel.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install compat-golang-github-facebookgo-inject-devel.noarch

2. Uninstall "compat-golang-github-facebookgo-inject-devel.noarch" package

Please follow the step by step instructions below to uninstall compat-golang-github-facebookgo-inject-devel.noarch on Fedora 36:

$ sudo dnf remove compat-golang-github-facebookgo-inject-devel.noarch $ sudo dnf autoremove

3. Information about the compat-golang-github-facebookgo-inject-devel.noarch package on Fedora 36

Last metadata expiration check: 0:00:03 ago on Thu Sep 8 14:04:46 2022.
Available Packages
Name : compat-golang-github-facebookgo-inject-devel
Version : 0
Release : 0.10.20190326gitf23751c.fc36
Architecture : noarch
Size : 9.7 k
Source : golang-github-facebookarchive-inject-0-0.10.20190326gitf23751c.fc36.src.rpm
Repository : fedora
Summary : Reflect based injector
URL : https://github.com/facebookarchive/inject
License : MIT
Description : Package inject provides a reflect based injector. A large application built with
: dependency injection in mind will typically involve the boring work of setting
: up the object graph. This library attempts to take care of this boring work by
: creating and connecting the various objects. Its use involves you seeding the
: object graph with some (possibly incomplete) objects, where the underlying types
: have been tagged for injection. Given this, the library will populate the
: objects creating new ones as necessary. It uses singletons by default, supports
: optional private instances as well as named instances.
:
: It works using Go's reflection package and is inherently limited in what it can
: do as opposed to a code-gen system with respect to private fields.
:
: This package provides symbolic links that alias the following Go import paths to
: github.com/facebookarchive/inject:
: – github.com/facebookgo/inject
:
: Aliasing Go import paths via symbolic links or http redirects is fragile. If
: your Go code depends on this package, you should patch it to import directly
: github.com/facebookarchive/inject.